File tree 1 file changed +0
-6
lines changed
1 file changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -239,9 +239,6 @@ func (c *Controller) reconcileHandler(obj interface{}) bool {
239
239
// resource to be synced.
240
240
if result , err := c .Do .Reconcile (ctx , req ); err != nil {
241
241
c .Queue .AddRateLimited (req )
242
- if log .V (3 ).Enabled () {
243
- log .Error (err , "Reconciler error" )
244
- }
245
242
ctrlmetrics .ReconcileErrors .WithLabelValues (c .Name ).Inc ()
246
243
ctrlmetrics .ReconcileTotal .WithLabelValues (c .Name , "error" ).Inc ()
247
244
return false
@@ -264,9 +261,6 @@ func (c *Controller) reconcileHandler(obj interface{}) bool {
264
261
// get queued again until another change happens.
265
262
c .Queue .Forget (obj )
266
263
267
- // TODO(directxman12): What does 1 mean? Do we want level constants? Do we want levels at all?
268
- log .V (5 ).Info ("Successfully Reconciled" )
269
-
270
264
ctrlmetrics .ReconcileTotal .WithLabelValues (c .Name , "success" ).Inc ()
271
265
// Return true, don't take a break
272
266
return true
You can’t perform that action at this time.
0 commit comments