diff options
author | Teddy Wing | 2017-11-13 23:03:39 +0100 |
---|---|---|
committer | Teddy Wing | 2017-11-13 23:03:39 +0100 |
commit | e93c2d1736bd2e08f9800f6d12bbe034194a38ad (patch) | |
tree | 70827cf60922aca6cd34b322ab3a51ad69cae2dc | |
parent | 5146511cca4aed7768e05269ef8840a10df336c7 (diff) | |
download | kipper-e93c2d1736bd2e08f9800f6d12bbe034194a38ad.tar.bz2 |
main(): Increase log verbosity to `Trace`
By default, 'stderrlog' uses the `Error` level (which I found out by
inspecting the source here:
https://docs.rs/stderrlog/0.2.3/src/stderrlog/lib.rs.html#242-253).
Increase the log verbosity to `Trace` to hopefully give us more
information to act on. Bug hunting.
-rw-r--r-- | src/main.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs index dc9bcc9..05ca775 100644 --- a/src/main.rs +++ b/src/main.rs @@ -111,6 +111,7 @@ fn main() { stderrlog::new() .module(module_path!()) .timestamp(stderrlog::Timestamp::Second) + .verbosity(4) // LogLevel::Trace .init() .expect("Logger failed to initialise"); |