Skip to content
Snippets Groups Projects
Commit 5f4a4904 authored by Jaime Pérez's avatar Jaime Pérez
Browse files

typo: Fix capitalized function call.

parent 6a5725b5
No related branches found
No related tags found
No related merge requests found
...@@ -423,7 +423,7 @@ class Logger ...@@ -423,7 +423,7 @@ class Logger
if (self::$captureLog) { if (self::$captureLog) {
$ts = microtime(true); $ts = microtime(true);
$msecs = (int) (($ts - (int) $ts) * 1000); $msecs = (int) (($ts - (int) $ts) * 1000);
$ts = GMdate('H:i:s', $ts).sprintf('.%03d', $msecs).'Z'; $ts = gmdate('H:i:s', $ts).sprintf('.%03d', $msecs).'Z';
self::$capturedLog[] = $ts.' '.$string; self::$capturedLog[] = $ts.' '.$string;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment