From e93c2d1736bd2e08f9800f6d12bbe034194a38ad Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Mon, 13 Nov 2017 23:03:39 +0100 Subject: 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. --- src/main.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'src') 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"); -- cgit v1.2.3