1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 10:55:56 +00:00

replace strftime with date

This commit is contained in:
David Edler
2021-11-30 22:07:11 +01:00
parent 14027ae04e
commit 72e21f89ce
3 changed files with 3 additions and 3 deletions

View File

@@ -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();
}