We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 156458b commit 35468e5Copy full SHA for 35468e5
config/logging.go
@@ -7,6 +7,7 @@ import (
7
)
8
9
// LogLevel is the global logging level for the application.
10
+
11
var LogLevel LogLevels
12
13
// LogLevels contains available logging levels.
@@ -30,7 +31,7 @@ func init() {
30
31
"INFO": LogLvlInfo,
32
"WARN": LogLvlWarn,
33
"ERROR": LogLvlError,
- "": LogLvlDebug, // the default level is debug
34
+ "": LogLvlInfo, // the default level is debug
35
}
36
var ok bool
37
if LogLevel, ok = logLvlStrToVal[os.Getenv("ARTIFACT_LOGLEVEL")]; !ok {
0 commit comments