diff options
| author | 2024-05-21 00:50:07 +0100 | |
|---|---|---|
| committer | 2024-05-21 00:50:07 +0100 | |
| commit | 09e86704594a5aa7e95712290d5638c9d1d356a9 (patch) | |
| tree | ef54844f8f71a7ef9c1dc2cfe359ca7a4b164cb5 /src/logging.cpp | |
| parent | Update the INFO output for the current state of things. (diff) | |
Abbreviate the date even more in the debug logger.
Diffstat (limited to 'src/logging.cpp')
| -rw-r--r-- | src/logging.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/logging.cpp b/src/logging.cpp index 74de6ad12..d769c1e2a 100644 --- a/src/logging.cpp +++ b/src/logging.cpp @@ -60,7 +60,7 @@ public: void OnLog(time_t time, Log::Level level, const std::string& type, const std::string& message) override { fmt::println("{} {}: {}", - fmt::styled(Time::ToString(time, "%d %b %Y %H:%M:%S"), fmt::fg(fmt::terminal_color::yellow)), + fmt::styled(Time::ToString(time, "%d %b %H:%M:%S"), fmt::fg(fmt::terminal_color::yellow)), fmt::styled(type, fmt::fg(fmt::terminal_color::green)), message ); |
