From 36342299c7cb754b172084e395f60d3f6ab4f461 Mon Sep 17 00:00:00 2001 From: Leander Beernaert Date: Tue, 9 May 2023 09:33:19 +0200 Subject: [PATCH] chore: Set default log level to Debug --- internal/logging/logging.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/logging/logging.go b/internal/logging/logging.go index 667f29c4..483cf395 100644 --- a/internal/logging/logging.go +++ b/internal/logging/logging.go @@ -113,7 +113,7 @@ func Init(logsPath, level string) error { // Debug or Trace. func setLevel(level string) error { if level == "" { - return nil + level = "debug" } logLevel, err := logrus.ParseLevel(level)