mirror of
https://github.com/optim-enterprises-bv/kubernetes.git
synced 2025-12-05 07:35:38 +00:00
vendor-ed skydns
This commit is contained in:
17
vendor/github.com/skynetservices/skydns/server/log.go
generated
vendored
Normal file
17
vendor/github.com/skynetservices/skydns/server/log.go
generated
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
// Copyright (c) 2014 The SkyDNS Authors. All rights reserved.
|
||||
// Use of this source code is governed by The MIT License (MIT) that can be
|
||||
// found in the LICENSE file.
|
||||
|
||||
package server
|
||||
|
||||
import "log"
|
||||
|
||||
// printf calls log.Printf with the parameters given.
|
||||
func logf(format string, a ...interface{}) {
|
||||
log.Printf("skydns: "+format, a...)
|
||||
}
|
||||
|
||||
// fatalf calls log.Fatalf with the parameters given.
|
||||
func fatalf(format string, a ...interface{}) {
|
||||
log.Fatalf("skydns: "+format, a...)
|
||||
}
|
||||
Reference in New Issue
Block a user