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.
--log-debug
1 parent f6b68f1 commit 0d03bcfCopy full SHA for 0d03bcf
cmd/werf/common/common.go
@@ -1523,10 +1523,14 @@ func ProcessLogOptions(cmdData *CmdData) error {
1523
}
1524
1525
func GetNelmLogLevel(cmdData *CmdData) string {
1526
+ if util.GetBoolEnvironmentDefaultFalse("WERF_NELM_TRACE") {
1527
+ return action.TraceLogLevel
1528
+ }
1529
+
1530
var logLevel string
1531
switch {
1532
case *cmdData.LogDebug:
- logLevel = action.TraceLogLevel
1533
+ logLevel = action.DebugLogLevel
1534
case *cmdData.LogQuiet:
1535
logLevel = action.ErrorLogLevel
1536
default:
0 commit comments