Skip to content

Commit

Permalink
fix log message (#4030)
Browse files Browse the repository at this point in the history
  • Loading branch information
vaikas authored Sep 10, 2020
1 parent 9d39390 commit 9d689ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/reconciler/mtbroker/trigger/trigger.go
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ func (r *Reconciler) ReconcileKind(ctx context.Context, t *eventingv1.Trigger) p

// If it's not my brokerclass, ignore
if b.Annotations[eventing.BrokerClassKey] != eventing.MTChannelBrokerClassValue {
logging.FromContext(ctx).Infow("Ignoring trigger %s/%s", t.Namespace, t.Name)
logging.FromContext(ctx).Infof("Ignoring trigger %s/%s", t.Namespace, t.Name)
return nil
}
t.Status.PropagateBrokerCondition(b.Status.GetTopLevelCondition())
Expand Down

0 comments on commit 9d689ca

Please sign in to comment.