Skip to content

Commit

Permalink
remove noisy log line
Browse files Browse the repository at this point in the history
  • Loading branch information
johnazariah committed Nov 19, 2024
1 parent 0ad9a54 commit ab513da
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion internal/controllers/watchdog/controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit ab513da

Please sign in to comment.