From 1f944714523913e2d8167fac6dc5291990eb25b1 Mon Sep 17 00:00:00 2001 From: lily Date: Sat, 19 Apr 2025 16:16:01 -0400 Subject: [PATCH] fix: use string logging by default --- src/main.rs | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/src/main.rs b/src/main.rs index 771109a..54e5339 100644 --- a/src/main.rs +++ b/src/main.rs @@ -485,13 +485,8 @@ impl ApplicationHandler for App<'_> { } pub fn main() -> Result<(), terminator::Terminator> { let config = LoggerConfig::default() - .colored_stdout(false) - .log_to_stdout(false) - .log_use_json(true) - .log_json_show_timestamp(true) - .log_json_show_level(true) - .log_json_show_message(true) - .log_json_show_additional_fields(true) + .colored_stdout(true) + .log_to_stdout(true) .file_include_time(true) .log_to_file(true) .level(LogLevel::Info)