From 78c3e3158a9e06d74f05845553d008b965c6cdbc Mon Sep 17 00:00:00 2001 From: Tyler Date: Sun, 7 Mar 2021 00:12:14 -0500 Subject: [PATCH] Set debug by default temporarily --- main.go | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/main.go b/main.go index 50949c9..f28be9f 100644 --- a/main.go +++ b/main.go @@ -42,9 +42,7 @@ func main() { Timeout: 15 * time.Second, } - if viper.GetBool("debug") { - log.SetLevel(log.DebugLevel) - } + log.SetLevel(log.DebugLevel) c, err := yara.NewCompiler()