summaryrefslogtreecommitdiff
path: root/classes/debug.php
diff options
context:
space:
mode:
authorDavid Edler <[email protected]>2021-11-30 22:07:11 +0100
committerDavid Edler <[email protected]>2021-11-30 22:07:11 +0100
commit72e21f89ce2465fafc08a92dc2d216b55f355f28 (patch)
treecd3134c15776e6cef62205c0e382bd2ed40d0de6 /classes/debug.php
parent14027ae04e4aee6cf1c3a4ff9a390ec266c0fb09 (diff)
replace strftime with date
Diffstat (limited to 'classes/debug.php')
-rw-r--r--classes/debug.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/debug.php b/classes/debug.php
index 1b9d499e5..fbdf260e0 100644
--- a/classes/debug.php
+++ b/classes/debug.php
@@ -88,7 +88,7 @@ class Debug {
if (!self::$enabled || self::$loglevel < $level) return false;
- $ts = date("%H:%M:%S", time());
+ $ts = date("H:i:s", time());
if (function_exists('posix_getpid')) {
$ts = "$ts/" . posix_getpid();
}