Skip to content

Commit

Permalink
REFACTOR: tls log message
Browse files Browse the repository at this point in the history
The log message was very noisy when no tls is used on the setup. The
massage also does not give any helpfully information. For now, it has
being moved to debug log level.

Signed-off-by: Jim Fitzpatrick <[email protected]>
  • Loading branch information
Boomatang committed Jan 7, 2025
1 parent 55a4161 commit fcd4551
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion controllers/effective_tls_policies_reconciler.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ func (t *EffectiveTLSPoliciesReconciler) Reconcile(ctx context.Context, _ []cont
var certTargets []CertTarget
for _, l := range listeners {
if err := validateGatewayListenerBlock(field.NewPath(""), *l.Listener, l.Gateway).ToAggregate(); err != nil {
logger.Info("Skipped a listener block: " + err.Error())
logger.V(1).Info("Skipped a listener block: " + err.Error())
continue
}

Expand Down

0 comments on commit fcd4551

Please sign in to comment.