Skip to content

Commit

Permalink
issue-1666: EventListener loglevel for interceptor updated to DEBUG
Browse files Browse the repository at this point in the history
  • Loading branch information
sudhishmk authored and tekton-robot committed Jul 30, 2024
1 parent fdda054 commit 8d22a77
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/sink/sink.go
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ func (r Sink) processTriggerGroups(g triggersv1.EventListenerTriggerGroup, el *t
}
}
if !resp.Continue {
eventLog.Infof("interceptor stopped trigger processing: %v", resp.Status.Err())
eventLog.Debugf("interceptor stopped trigger processing: %v", resp.Status.Err())
return
}
}
Expand Down Expand Up @@ -417,7 +417,7 @@ func (r Sink) processTrigger(t triggersv1.Trigger, el *triggersv1.EventListener,

if iresp != nil {
if !iresp.Continue {
log.Infof("interceptor stopped trigger processing: %v", iresp.Status.Err())
log.Debugf("interceptor stopped trigger processing: %v", iresp.Status.Err())
return
}
}
Expand Down

0 comments on commit 8d22a77

Please sign in to comment.