aboutsummaryrefslogtreecommitdiff
path: root/dyndns.go
diff options
context:
space:
mode:
Diffstat (limited to 'dyndns.go')
-rw-r--r--dyndns.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/dyndns.go b/dyndns.go
index f63e5c0..266a7e1 100644
--- a/dyndns.go
+++ b/dyndns.go
@@ -3,7 +3,6 @@ package main
import (
"flag"
- "log"
"net"
)
@@ -13,7 +12,7 @@ func main() {
conf := &config{}
if err := conf.parse(*configFile); err != nil {
- log.Fatal(err)
+ logger.Fatal(err)
}
update4 := make(chan net.IPAddr)