summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--system/core/Log.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/core/Log.php b/system/core/Log.php
index 3f7fc783f..cfc0f36a2 100644
--- a/system/core/Log.php
+++ b/system/core/Log.php
@@ -253,7 +253,7 @@ class CI_Log {
*/
protected function _format_line($level, $date, $message)
{
- return $level.' - '.$date.' --> '.$message."\r\n";
+ return $level.' - '.$date.' --> '.$message. PHP_EOL;
}
// --------------------------------------------------------------------