Skip to content

Commit

Permalink
fix: remove additional debug parameter (#4430)
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterSchafer committed Feb 24, 2023
1 parent 9ff88d2 commit b86af3f
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions cliv2/pkg/basic_workflows/legacycli.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit b86af3f

Please sign in to comment.