Skip to content

Commit 9010b54

Browse files
committed
Removed some noisy debug messages. These were more important when we didn't get specific about what modifications are triggering changes.
1 parent fb4666d commit 9010b54

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

pkg/alb/lb/loadbalancer.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ func (l *LoadBalancer) Reconcile(rOpts *ReconcileOptions) []error {
246246
default: // check for diff between lb current and desired, modify if necessary
247247
needsModification, _ := l.needsModification()
248248
if needsModification == 0 {
249-
l.logger.Debugf("No modification of ELBV2 (ALB) required.")
249+
// l.logger.Debugf("No modification of ELBV2 (ALB) required.")
250250
break
251251
}
252252

pkg/alb/ls/listener.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ func (l *Listener) Reconcile(rOpts *ReconcileOptions) error {
9898
*l.ls.current.ListenerArn, *l.ls.current.Port, *l.ls.current.Protocol)
9999

100100
default:
101-
l.logger.Debugf("No listener modification required.")
101+
// l.logger.Debugf("No listener modification required.")
102102
}
103103

104104
return nil

pkg/alb/rs/rule.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ func (r *Rule) Reconcile(rOpts *ReconcileOptions) error {
127127
log.Prettify(r.rs.current.Conditions))
128128

129129
default:
130-
r.logger.Debugf("No rule modification required.")
130+
// r.logger.Debugf("No rule modification required.")
131131
}
132132

133133
return nil

pkg/alb/tg/targetgroup.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ func (t *TargetGroup) Reconcile(rOpts *ReconcileOptions) error {
145145
*t.tg.current.TargetGroupArn,
146146
*t.tg.current.TargetGroupName)
147147
} else {
148-
t.logger.Debugf("No TargetGroup modification required.")
148+
// t.logger.Debugf("No TargetGroup modification required.")
149149
}
150150
}
151151

0 commit comments

Comments
 (0)