mirror of
https://github.com/weaveworks/scope.git
synced 2026-07-18 21:09:38 +00:00
Upgraded from 99c19923, branch release-3.0. This required fetching or upgrading the following: * k8s.io/api to kubernetes-1.9.1 * k8s.io/apimachinery to kubernetes-1.9.1 * github.com/juju/ratelimit to 1.0.1 * github.com/spf13/pflag to 4c012f6d Also, update Scope's imports/function calls to be compatible with the new client.
35 lines
688 B
Go
35 lines
688 B
Go
package log
|
|
|
|
import (
|
|
stdlog "log"
|
|
"os"
|
|
)
|
|
|
|
// StdLogger corresponds to a minimal subset of the interface satisfied by stdlib log.Logger
|
|
type StdLogger interface {
|
|
Print(v ...interface{})
|
|
Printf(format string, v ...interface{})
|
|
}
|
|
|
|
var Logger StdLogger
|
|
|
|
func init() {
|
|
// default Logger
|
|
SetLogger(stdlog.New(os.Stderr, "[restful] ", stdlog.LstdFlags|stdlog.Lshortfile))
|
|
}
|
|
|
|
// SetLogger sets the logger for this package
|
|
func SetLogger(customLogger StdLogger) {
|
|
Logger = customLogger
|
|
}
|
|
|
|
// Print delegates to the Logger
|
|
func Print(v ...interface{}) {
|
|
Logger.Print(v...)
|
|
}
|
|
|
|
// Printf delegates to the Logger
|
|
func Printf(format string, v ...interface{}) {
|
|
Logger.Printf(format, v...)
|
|
}
|