logging: Don't use PrintF when not needed (#1599)
These log print don't have any verbs, so just use plain Print
This commit is contained in:
parent
87790dd47c
commit
27f58d8dc6
6 changed files with 8 additions and 8 deletions
|
@ -53,7 +53,7 @@ func notify(zone string, to []string) error {
|
|||
continue
|
||||
}
|
||||
if err := notifyAddr(c, m, t); err != nil {
|
||||
log.Printf("[ERROR] " + err.Error())
|
||||
log.Print("[ERROR] " + err.Error())
|
||||
} else {
|
||||
log.Printf("[INFO] Sent notify for zone %q to %q", zone, t)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue