diff options
Diffstat (limited to 'plugin/file/notify.go')
-rw-r--r-- | plugin/file/notify.go | 3 |
1 files changed, 1 insertions, 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 } |