From 87bd9dec856b743d65d71f90accc4296d767b109 Mon Sep 17 00:00:00 2001 From: Miek Gieben Date: Tue, 27 Aug 2019 13:54:23 +0000 Subject: [PATCH] plugin/file: less notify logging spam (#3212) Say once that we've sent notifies, instead of for every upstream primary. Signed-off-by: Miek Gieben --- plugin/file/notify.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/plugin/file/notify.go b/plugin/file/notify.go index ce6a0b095..83d73ee6f 100644 --- a/plugin/file/notify.go +++ b/plugin/file/notify.go @@ -53,10 +53,9 @@ func notify(zone string, to []string) error { } if err := notifyAddr(c, m, t); err != nil { log.Error(err.Error()) - } else { - log.Infof("Sent notify for zone %q to %q", zone, t) } } + log.Infof("Sent notifies for zone %q to %v", zone, to) return nil }