diff options
author | Teddy Wing | 2017-11-17 00:01:26 +0100 |
---|---|---|
committer | Teddy Wing | 2017-11-17 00:01:26 +0100 |
commit | 43e5b662a991c8ed25f309bd32cbe9942bf6fd85 (patch) | |
tree | a759bb245dc589cdf0f3413e9eff28a672e737e4 /src | |
parent | ac6454cce79df2025ee5382e4534bd887ecafa50 (diff) | |
download | kipper-43e5b662a991c8ed25f309bd32cbe9942bf6fd85.tar.bz2 |
main(): Lower log verbosity to 'info'
Make the logs less noisy and don't output 'debug' or 'trace' logs.
Diffstat (limited to 'src')
-rw-r--r-- | src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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"); |