diff --git a/src/ll/api/io/DefaultSink.cpp b/src/ll/api/io/DefaultSink.cpp index be0c49b981..cf0e8ee852 100644 --- a/src/ll/api/io/DefaultSink.cpp +++ b/src/ll/api/io/DefaultSink.cpp @@ -10,7 +10,7 @@ namespace ll::io { struct DefaultSink::Impl { std::mutex mutex; std::ofstream logFile{file_utils::u8path(pl::pl_log_path) / u8"latest.log"}; - PatternFormatter logFileFormatter{"[{tm:.3%F %T.} {lvl}][{tit}] {msg}", false}; + PatternFormatter logFileFormatter{"[{3:.3%F %T.} {2}][{1}] {0}", false}; }; DefaultSink::Impl& DefaultSink::getImpl() { @@ -19,7 +19,7 @@ DefaultSink::Impl& DefaultSink::getImpl() { } DefaultSink::DefaultSink() -: Sink(makePolymorphic("{tm:.3%T.} {lvl} {tit} {msg}", Formatter::supportColorLog(), 0b0010)), +: Sink(makePolymorphic("{3:.3%T.} {2} {1} {0}", Formatter::supportColorLog(), 0b0010)), impl(getImpl()) {} DefaultSink::~DefaultSink() = default;