From ab513dae80f82cf8ad8925c51043ed70a817f8fe Mon Sep 17 00:00:00 2001 From: "John Azariah (from Dev Box)" Date: Tue, 19 Nov 2024 11:44:20 +1000 Subject: [PATCH] remove noisy log line --- internal/controllers/watchdog/controller.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/internal/controllers/watchdog/controller.go b/internal/controllers/watchdog/controller.go index c7d78d60..921bd9e4 100644 --- a/internal/controllers/watchdog/controller.go +++ b/internal/controllers/watchdog/controller.go @@ -72,7 +72,9 @@ func (c *watchdogController) getInputsExist(comp *apiv1.Composition, ctx context syn.Name = comp.Spec.Synthesizer.Name err := c.client.Get(ctx, client.ObjectKeyFromObject(syn), syn) if err != nil { - //logger.WithValues("synthesizerName", syn.Name).Error(err, "failed to get synthesizer for composition. Synthesizer may not exist. Presuming inputs are not missing.") + // Failed to get synthesizer for composition. + // Synthesizer may not exist. + // Presuming inputs are not missing. return true } return comp.InputsExist(syn)