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 8, 2025
1 parent 8590b09 commit 3d55f61
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 3d55f61

Please sign in to comment.