Commit 87bd9dec authored by Miek Gieben's avatar Miek Gieben Committed by GitHub

plugin/file: less notify logging spam (#3212)

Say once that we've sent notifies, instead of for every upstream
primary.
Signed-off-by: default avatarMiek Gieben <miek@miek.nl>
parent 364478eb
...@@ -53,10 +53,9 @@ func notify(zone string, to []string) error { ...@@ -53,10 +53,9 @@ func notify(zone string, to []string) error {
} }
if err := notifyAddr(c, m, t); err != nil { if err := notifyAddr(c, m, t); err != nil {
log.Error(err.Error()) 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 return nil
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment