Skip to content

Commit 35468e5

Browse files
committed
Default log level to info
1 parent 156458b commit 35468e5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

config/logging.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import (
77
)
88

99
// LogLevel is the global logging level for the application.
10+
1011
var LogLevel LogLevels
1112

1213
// LogLevels contains available logging levels.
@@ -30,7 +31,7 @@ func init() {
3031
"INFO": LogLvlInfo,
3132
"WARN": LogLvlWarn,
3233
"ERROR": LogLvlError,
33-
"": LogLvlDebug, // the default level is debug
34+
"": LogLvlInfo, // the default level is debug
3435
}
3536
var ok bool
3637
if LogLevel, ok = logLvlStrToVal[os.Getenv("ARTIFACT_LOGLEVEL")]; !ok {

0 commit comments

Comments
 (0)