Radish alpha
h
Radicle Heartwood Protocol & Stack
Radicle
Git (anonymous pull)
Log in to clone via SSH
REVIEW: Use `Level::max` instead of hardcoded string
Fintan Halpenny committed 1 day ago
commit dacf45b44a89f0ec45db75e593bab1b61a60bcea
parent 5c69b7594c71ed5c65e72faa6d21b9c5cdeb81a4
1 file changed +1 -1
modified crates/radicle-node/src/main.rs
@@ -378,7 +378,7 @@ fn initialize_logging(options: &LogOptions) -> Result<(), Box<dyn std::error::Er

                // Set to trace and defer to log::set_max_level for filtering
                Box::new(
-
                    Builder::with_level("trace")
+
                    Builder::with_level(log::Level::max().as_str())
                        .with_default_writer(writer)
                        .build(),
                )