fix: use string logging by default
Some checks failed
Build Zenyx ⚡ / 🏗️ Build x86_64-unknown-linux-gnu (push) Has been skipped
Build Zenyx ⚡ / 🏗️ Build x86_64-pc-windows-msvc (push) Has been skipped
Build Zenyx ⚡ / 🔧 Setup Environment (pull_request) Failing after 54s
Build Zenyx ⚡ / 🏗️ Build aarch64-unknown-linux-gnu (pull_request) Has been skipped
Build Zenyx ⚡ / 🏗️ Build x86_64-unknown-linux-gnu (pull_request) Has been skipped
Build Zenyx ⚡ / 🏗️ Build x86_64-pc-windows-msvc (pull_request) Has been skipped
Build Zenyx ⚡ / 🔧 Setup Environment (push) Failing after 52s
Build Zenyx ⚡ / 🏗️ Build aarch64-unknown-linux-gnu (push) Has been skipped

This commit is contained in:
lily 2025-04-19 16:16:01 -04:00
parent c8f8863940
commit 1f94471452
Signed by: lily
GPG key ID: 601F3263FBCBC4B9

View file

@ -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)