coder_upgrade_log_path()Return path to log file.
string Path to file.
sites/all/modules/coder/coder_upgrade/coder_upgrade.module, line 510
<?php
function coder_upgrade_log_path() {
static $path = '';
if (!$path) {
$path = file_directory_path() . '/' . DEADWOOD_DIR . '/debug.txt';
}
return $path;
}
?>