Skip to content

Commit 5ba5e41

Browse files
committed
refactor: remove debug error output
Errors should always be logged with an error level and not debug level. Since the error is returned here, it will be logged later as an error. Presumably this was a leftover from debugging the executor chain in: PR: nektos#971
1 parent ff13844 commit 5ba5e41

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

pkg/common/executor.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,6 @@ func (e Executor) Then(then Executor) Executor {
136136
case Warning:
137137
log.Warning(err.Error())
138138
default:
139-
log.Debugf("%+v", err)
140139
return err
141140
}
142141
}

0 commit comments

Comments
 (0)