Skip to content

Commit

Permalink
Suppress unnecessary pipeline logging
Browse files Browse the repository at this point in the history
  • Loading branch information
samsondav committed Nov 14, 2024
1 parent 1621c60 commit 0878922
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/services/pipeline/runner.go
Original file line number Diff line number Diff line change
Expand Up @@ -518,7 +518,7 @@ func (r *runner) run(ctx context.Context, pipeline *Pipeline, run *Run, vars Var
} else if run.HasErrors() {
l = l.With("run.AllErrors", run.AllErrors)
l.Debugw("Completed pipeline run with errors")
} else {
} else if r.config.VerboseLogging() {
l.Debugw("Completed pipeline run successfully")
}

Expand Down

0 comments on commit 0878922

Please sign in to comment.