alecpl
2010-08-23 5cf7aae17829f1364bef6d44ef92ebb7d5edf9a8
- Don't add date to log when using syslog


1 files modified
8 ■■■■ changed files
program/include/main.inc 8 ●●●● patch | view | raw | blame | history
program/include/main.inc
@@ -1117,14 +1117,14 @@
      return true;
  }
 
  $log_entry = sprintf("[%s]: %s\n", $date, $line);
  if ($CONFIG['log_driver'] == 'syslog') {
    $prio = $name == 'errors' ? LOG_ERR : LOG_INFO;
    syslog($prio, $log_entry);
    syslog($prio, $line);
    return true;
  }
  else {
    $line = sprintf("[%s]: %s\n", $date, $line);
    // log_driver == 'file' is assumed here
    if (empty($CONFIG['log_dir']))
      $CONFIG['log_dir'] = INSTALL_PATH.'logs';
@@ -1132,7 +1132,7 @@
    // try to open specific log file for writing
    $logfile = $CONFIG['log_dir'].'/'.$name;
    if ($fp = @fopen($logfile, 'a')) {
      fwrite($fp, $log_entry);
      fwrite($fp, $line);
      fflush($fp);
      fclose($fp);
      return true;