aboutsummaryrefslogtreecommitdiffstats
path: root/src/init.cpp
diff options
context:
space:
mode:
authorsaturneric <[email protected]>2023-10-23 13:23:37 +0000
committersaturneric <[email protected]>2023-10-23 13:23:37 +0000
commit5a3f422335b27c6c19a2d91f525c77435e8f2384 (patch)
treea72d417cc040f07fd7e21f9bd2cc70d0de5e8bed /src/init.cpp
parentperf: reduce header includes and improve build speed (diff)
downloadGpgFrontend-5a3f422335b27c6c19a2d91f525c77435e8f2384.tar.gz
GpgFrontend-5a3f422335b27c6c19a2d91f525c77435e8f2384.zip
fix: solve some issues on log system
Diffstat (limited to 'src/init.cpp')
-rw-r--r--src/init.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/init.cpp b/src/init.cpp
index 5e384f86..b6ae32b5 100644
--- a/src/init.cpp
+++ b/src/init.cpp
@@ -65,7 +65,7 @@ void init_logging_system() {
auto main_logger = std::make_shared<spdlog::async_logger>(
"main", begin(sinks), end(sinks), spdlog::thread_pool());
main_logger->set_pattern(
- "[%H:%M:%S.%e] [T:%t] [%=4n] %^[%=8l]%$ [%s:%#] [%!] -> %v (+%ius)");
+ "[%H:%M:%S.%e] [T:%t] [%=6n] %^[%=8l]%$ [%s:%#] [%!] -> %v (+%ius)");
#ifdef DEBUG
main_logger->set_level(spdlog::level::trace);