aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTeddy Wing2017-11-13 23:03:39 +0100
committerTeddy Wing2017-11-13 23:03:39 +0100
commite93c2d1736bd2e08f9800f6d12bbe034194a38ad (patch)
tree70827cf60922aca6cd34b322ab3a51ad69cae2dc /src
parent5146511cca4aed7768e05269ef8840a10df336c7 (diff)
downloadkipper-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.
Diffstat (limited to 'src')
-rw-r--r--src/main.rs1
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");