diff options
author | Sharad Soni <sharadrsoni@gmail.com> | 2019-04-24 10:36:33 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-24 10:36:33 +0200 |
commit | b5e4b30ff267fe03273c859ba110cca0d8e72dac (patch) | |
tree | 7a0e8e66d7838ec8a272e3638bffcdf9b6e7945b /system/core | |
parent | 1c35505d92fd502b6fbfbbdf6f7a462ad92c6273 (diff) |
Update Log.php
Removed extra space.
Diffstat (limited to 'system/core')
-rw-r--r-- | system/core/Log.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/core/Log.php b/system/core/Log.php index cfc0f36a2..3c9a89a5f 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. PHP_EOL; + return $level.' - '.$date.' --> '.$message.PHP_EOL; } // -------------------------------------------------------------------- |