diff options
| author | Stefan Boberg <[email protected]> | 2023-11-29 12:22:49 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-11-29 12:22:49 +0100 |
| commit | 588bafdfad0aa5b4251e80894258f50f48c2fe70 (patch) | |
| tree | e09bdb6e99e31cb7e0aae02289f0ec9f6eeef39f /src/zenutil/logging.cpp | |
| parent | Update README.md (diff) | |
| download | zen-588bafdfad0aa5b4251e80894258f50f48c2fe70.tar.xz zen-588bafdfad0aa5b4251e80894258f50f48c2fe70.zip | |
fixed file logger pattern (#579)
previously, the millisecond part was inexplicably logged after the date, not the time.
Diffstat (limited to 'src/zenutil/logging.cpp')
| -rw-r--r-- | src/zenutil/logging.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/zenutil/logging.cpp b/src/zenutil/logging.cpp index 512c7901c..d0a6ac0b4 100644 --- a/src/zenutil/logging.cpp +++ b/src/zenutil/logging.cpp @@ -179,7 +179,7 @@ FinishInitializeLogging(const LoggingOptions& LogOptions) } else { - g_FileSink->set_pattern("[%C-%m-%d.%e %T] [%n] [%l] %v"); + g_FileSink->set_pattern("[%C-%m-%d %T.%e] [%n] [%l] %v"); } } |