aboutsummaryrefslogtreecommitdiff
path: root/plugin/file/file.go
diff options
context:
space:
mode:
Diffstat (limited to 'plugin/file/file.go')
-rw-r--r--plugin/file/file.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/plugin/file/file.go b/plugin/file/file.go
index cc77da81c..1f27c582d 100644
--- a/plugin/file/file.go
+++ b/plugin/file/file.go
@@ -7,12 +7,14 @@ import (
"io"
"github.com/coredns/coredns/plugin"
- "github.com/coredns/coredns/plugin/pkg/log"
+ clog "github.com/coredns/coredns/plugin/pkg/log"
"github.com/coredns/coredns/request"
"github.com/miekg/dns"
)
+var log = clog.NewWithPlugin("file")
+
type (
// File is the plugin that reads zone data from disk.
File struct {