From 1c35505d92fd502b6fbfbbdf6f7a462ad92c6273 Mon Sep 17 00:00:00 2001 From: Sharad Soni Date: Wed, 24 Apr 2019 02:35:24 +0530 Subject: Update Log.php Changed to use PHP_EOL instead of '/r/n' --- system/core/Log.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'system/core') 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; } // -------------------------------------------------------------------- -- cgit v1.2.3-24-g4f1b