diff options
author | Gabriel Potkány <gadelat@gmail.com> | 2014-12-19 12:35:00 +0100 |
---|---|---|
committer | Gabriel Potkány <gadelat@gmail.com> | 2014-12-19 12:35:00 +0100 |
commit | f83262eceefb37053a8a025fefff0cbb03985f2f (patch) | |
tree | 1313b019f3ad2c8df4c8a5b5034bbe9a08d88c6c /system | |
parent | 1fb0cc743eb087adf0c17ebec2912696c09bbc26 (diff) |
Support for microseconds
Diffstat (limited to 'system')
-rw-r--r-- | system/core/Log.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/system/core/Log.php b/system/core/Log.php index b0576c58f..ab8ae2857 100644 --- a/system/core/Log.php +++ b/system/core/Log.php @@ -198,7 +198,12 @@ class CI_Log { return FALSE; } - $message .= $level.' - '.date($this->_date_fmt).' --> '.$msg."\n"; + // Instantiate DateTime with microseconds accuracy to allow proper use of "u" character in date format + $t = microtime(true); + $micro = sprintf("%06d",($t - floor($t)) * 1000000); + $date = new DateTime(date('Y-m-d H:i:s.'.$micro, $t)); + + $message .= $level.' - '.$date->format($this->_date_fmt).' --> '.$msg."\n"; flock($fp, LOCK_EX); |