aboutsummaryrefslogtreecommitdiff
path: root/plugin/dnssec/responsewriter.go
diff options
context:
space:
mode:
Diffstat (limited to 'plugin/dnssec/responsewriter.go')
-rw-r--r--plugin/dnssec/responsewriter.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/dnssec/responsewriter.go b/plugin/dnssec/responsewriter.go
index c50850aba..bf408ecf3 100644
--- a/plugin/dnssec/responsewriter.go
+++ b/plugin/dnssec/responsewriter.go
@@ -40,7 +40,7 @@ func (d *ResponseWriter) WriteMsg(res *dns.Msg) error {
// Write implements the dns.ResponseWriter interface.
func (d *ResponseWriter) Write(buf []byte) (int, error) {
- log.Printf("[WARNING] Dnssec called with Write: not signing reply")
+ log.Print("[WARNING] Dnssec called with Write: not signing reply")
n, err := d.ResponseWriter.Write(buf)
return n, err
}