diff --git a/cliv2/pkg/basic_workflows/legacycli.go b/cliv2/pkg/basic_workflows/legacycli.go index d2ac3e361c..5943c2f45f 100644 --- a/cliv2/pkg/basic_workflows/legacycli.go +++ b/cliv2/pkg/basic_workflows/legacycli.go @@ -53,16 +53,11 @@ func legacycliWorkflow(invocation workflow.InvocationContext, input []workflow.D args := config.GetStringSlice(configuration.RAW_CMD_ARGS) useStdIo := config.GetBool(configuration.WORKFLOW_USE_STDIO) - debug := config.GetBool(configuration.DEBUG) cacheDirectory := config.GetString(configuration.CACHE_PATH) insecure := config.GetBool(configuration.INSECURE_HTTPS) proxyAuthenticationMechanismString := config.GetString(configuration.PROXY_AUTHENTICATION_MECHANISM) proxyAuthenticationMechanism := httpauth.AuthenticationMechanismFromString(proxyAuthenticationMechanismString) - if debug { - args = append(args, "--debug") - } - debugLogger.Println("Arguments:", args) debugLogger.Println("Use StdIO:", useStdIo)