]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Windows server fix: Use platform EOL in debug log file
authorBrion Vibber <brion@pobox.com>
Tue, 11 May 2010 19:22:14 +0000 (12:22 -0700)
committerBrion Vibber <brion@pobox.com>
Tue, 11 May 2010 19:22:14 +0000 (12:22 -0700)
lib/util.php

index c0013bb3da4db96627e0e7723bf1ac0e8007e7e4..efede1d4be0808e439935cb227789a70da3d86d2 100644 (file)
@@ -1365,7 +1365,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()