pkg/log usage in coremain as well (#1751)

This commit is contained in:
Miek Gieben
2018-04-27 21:50:24 +01:00
committed by GitHub
parent bfc647d4ed
commit 82d3195f2f

View File

@@ -12,9 +12,10 @@ import (
"strconv" "strconv"
"strings" "strings"
"github.com/mholt/caddy"
"github.com/coredns/coredns/core/dnsserver" "github.com/coredns/coredns/core/dnsserver"
clog "github.com/coredns/coredns/plugin/pkg/log"
"github.com/mholt/caddy"
) )
func init() { func init() {
@@ -156,8 +157,8 @@ func defaultLoader(serverType string) (caddy.Input, error) {
// logVersion logs the version that is starting. // logVersion logs the version that is starting.
func logVersion() { func logVersion() {
log.Print("[INFO] " + versionString()) clog.Info(versionString())
log.Print("[INFO] " + releaseString()) clog.Info(releaseString())
} }
// showVersion prints the version that is starting. // showVersion prints the version that is starting.