diff options
| -rw-r--r-- | program/include/main.inc | 5 | 
1 files changed, 4 insertions, 1 deletions
| diff --git a/program/include/main.inc b/program/include/main.inc index 97a3db16c..6e4cbe1bc 100644 --- a/program/include/main.inc +++ b/program/include/main.inc @@ -1042,12 +1042,15 @@ function write_log($name, $line)        $CONFIG['log_dir'] = INSTALL_PATH.'logs';      // try to open specific log file for writing -    if ($fp = @fopen($CONFIG['log_dir'].'/'.$name, 'a')) { +    $logfile = $CONFIG['log_dir'].'/'.$name; +    if ($fp = @fopen($logfile, 'a')) {        fwrite($fp, $log_entry);        fflush($fp);        fclose($fp);        return true;      } +    else +      trigger_error("Error writing to log file $logfile; Please check permissions", E_USER_WARNING);    }    return false;  } | 
