diff options
author | Brion Vibber <brion@pobox.com> | 2010-05-14 12:15:13 -0700 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2010-05-14 12:15:13 -0700 |
commit | 91367dbc2145d0ad0eebd12cd6197d54c3d3b930 (patch) | |
tree | cff3d3f6bdf8d5567220ea666ffefdd0156d7c6c /lib/util.php | |
parent | da18701394ef717cd68dad11f5a830719ad675e6 (diff) | |
parent | 065ecc5573607d21ae005ff2649d04558256fc7e (diff) |
Merge branch '0.9.x' into 1.0.x
Diffstat (limited to 'lib/util.php')
-rw-r--r-- | lib/util.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/util.php b/lib/util.php index e15c69f95..b2717e96d 100644 --- a/lib/util.php +++ b/lib/util.php @@ -1397,7 +1397,7 @@ function common_log_line($priority, $msg) { static $syslog_priorities = array('LOG_EMERG', 'LOG_ALERT', 'LOG_CRIT', 'LOG_ERR', 'LOG_WARNING', 'LOG_NOTICE', 'LOG_INFO', 'LOG_DEBUG'); - return date('Y-m-d H:i:s') . ' ' . $syslog_priorities[$priority] . ': ' . $msg . "\n"; + return date('Y-m-d H:i:s') . ' ' . $syslog_priorities[$priority] . ': ' . $msg . PHP_EOL; } function common_request_id() |