From f57406db5941fc02f7f1197a46923b1b1d30c77e Mon Sep 17 00:00:00 2001 From: Adrian Dombeck Date: Tue, 28 Jan 2025 15:15:09 +0100 Subject: [PATCH] Log notice level messages by default We want users to see notice level messages, which are used for important events that may require special handling. --- internal/consts/consts.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/consts/consts.go b/internal/consts/consts.go index 49abdd204..f68c4d44c 100644 --- a/internal/consts/consts.go +++ b/internal/consts/consts.go @@ -13,7 +13,7 @@ const ( TEXTDOMAIN = "adsys" // DefaultLogLevel is the default logging level selected without any option. - DefaultLogLevel = log.WarnLevel + DefaultLogLevel = log.NoticeLevel // DefaultSocketPath is the default socket path. DefaultSocketPath = "/run/authd.sock"