From 43e5b662a991c8ed25f309bd32cbe9942bf6fd85 Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Fri, 17 Nov 2017 00:01:26 +0100 Subject: main(): Lower log verbosity to 'info' Make the logs less noisy and don't output 'debug' or 'trace' logs. --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 6bb4594..c7be3ee 100644 --- a/src/main.rs +++ b/src/main.rs @@ -113,7 +113,7 @@ fn main() { stderrlog::new() .module(module_path!()) .timestamp(stderrlog::Timestamp::Second) - .verbosity(4) // LogLevel::Trace + .verbosity(2) // LogLevel::Info .init() .expect("Logger failed to initialise"); -- cgit v1.2.3