From 52bb5ffe9a31ac93c053230c318fa03eb54d3675 Mon Sep 17 00:00:00 2001 From: David Florness Date: Mon, 8 Jun 2020 23:37:20 -0600 Subject: [PATCH] Temporarily disable loggers There will be a -d flag to re-enable them. Currently. these loggers make the application unusable. --- main.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/main.go b/main.go index 64579dd..e6cac76 100644 --- a/main.go +++ b/main.go @@ -169,7 +169,9 @@ func bootstrap() { func main() { log.SetAllLoggers(logging.WARNING) - log.SetLogLevel("tallyard", "info") + log.SetLogLevel("dht", "critical") + log.SetLogLevel("relay", "critical") + log.SetLogLevel("tallyard", "critical") app := tview.NewApplication() modal := tview.NewModal(). -- 2.38.4