From d01c2fb453bd4be58ee7286ff1ef0b639f52a796 Mon Sep 17 00:00:00 2001 From: Thorsten Sommer Date: Tue, 13 Jan 2026 18:40:19 +0100 Subject: [PATCH] Adjusted the INFO color --- runtime/src/log.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/runtime/src/log.rs b/runtime/src/log.rs index 77893373..7f5c1a3f 100644 --- a/runtime/src/log.rs +++ b/runtime/src/log.rs @@ -65,6 +65,7 @@ pub fn init_logging() { .duplicate_to_stdout(Duplicate::All) .use_utc() .format_for_files(file_logger_format) + .set_palette("196;208;34;7;8".to_string()) // error, warn, info, debug, trace .format_for_stderr(terminal_colored_logger_format) .format_for_stdout(terminal_colored_logger_format) .start().expect("Cannot start logging");