Skip to content

Commit

Permalink
Lower the log level of no app updates to reduce log noise (#4279)
Browse files Browse the repository at this point in the history
  • Loading branch information
nghialv committed Mar 22, 2023
1 parent cc0245c commit 44444b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/app/piped/trigger/determiner.go
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ func (d *OnCommitDeterminer) ShouldTrigger(ctx context.Context, app *model.Appli
// Check whether the most recently applied one is the target commit or not.
// If so, nothing to do for this time.
if preCommit == d.targetCommit {
logger.Info(fmt.Sprintf("no update to sync for application, hash: %s", d.targetCommit))
logger.Debug(fmt.Sprintf("no update to sync for application, hash: %s", d.targetCommit))
return false, nil
}

Expand Down

0 comments on commit 44444b1

Please sign in to comment.