From ddf38726a46bc3bdc07eb3c40feb121988027087 Mon Sep 17 00:00:00 2001 From: kermieisinthehouse Date: Wed, 9 Feb 2022 18:11:23 -0800 Subject: [PATCH] Cleanup logspam in identify (#2287) --- pkg/identify/identify.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/identify/identify.go b/pkg/identify/identify.go index 2520618b3..1cb857e87 100644 --- a/pkg/identify/identify.go +++ b/pkg/identify/identify.go @@ -40,7 +40,7 @@ func (t *SceneIdentifier) Identify(ctx context.Context, txnManager models.Transa } if result == nil { - logger.Infof("Unable to identify %s", scene.Path) + logger.Debugf("Unable to identify %s", scene.Path) return nil } @@ -176,7 +176,7 @@ func (t *SceneIdentifier) modifyScene(ctx context.Context, txnManager models.Tra // don't update anything if nothing was set if updater.IsEmpty() { - logger.Infof("Nothing to set for %s", s.Path) + logger.Debugf("Nothing to set for %s", s.Path) return nil }