From c5f3ce4c47c7b80495090b328defbd80b0138cc2 Mon Sep 17 00:00:00 2001 From: Jeremiah Russell Date: Fri, 3 Oct 2025 09:45:35 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20docs(logging):=20add=20future=20?= =?UTF-8?q?improvement=20note?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - add a to-do comment to improve the logging filter functionality --- src/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.rs b/src/main.rs index bb97fa4..98c4567 100644 --- a/src/main.rs +++ b/src/main.rs @@ -64,6 +64,7 @@ fn get_logging(level: log::LevelFilter) -> env_logger::Builder { let mut builder = env_logger::Builder::new(); builder.filter(Some("cull_gmail"), level); + // TODO: Provide an option to set wider filter allowing all crates to report builder.format_timestamp_secs().format_module_path(false);