From 4a01d65d4ad25a63ab8c5ccbda2398ec5d327f5a Mon Sep 17 00:00:00 2001 From: Mark Date: Tue, 23 Jan 2024 21:22:41 -0800 Subject: [PATCH] Length adjustment --- crates/galactica/src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/galactica/src/main.rs b/crates/galactica/src/main.rs index 34b4675..9e1ed2f 100644 --- a/crates/galactica/src/main.rs +++ b/crates/galactica/src/main.rs @@ -44,10 +44,10 @@ mod cli; fn set_up_logger(_args: &Args) -> log4rs::Handle { // h: highlight with level color - // :<0.40 right align, min 0, max 40 + // :<0.128 right align, min 0, max 128 let stdout = ConsoleAppender::builder() .encoder(Box::new(PatternEncoder::new( - "{d(%H:%M:%S)} | {({h({l})}):5.5} | \x1b[0;34m{M}\x1b[0m — {m:<0.50}{n}", + "{d(%H:%M:%S)} | {({h({l})}):5.5} | \x1b[0;34m{M}\x1b[0m — {m:<0.128}{n}", ))) .build();