forked from mirror/go-ethereum
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
635 B
30 lines
635 B
package bigcache
|
|
|
|
import (
|
|
"log"
|
|
"os"
|
|
)
|
|
|
|
// Logger is invoked when `Config.Verbose=true`
|
|
type Logger interface {
|
|
Printf(format string, v ...interface{})
|
|
}
|
|
|
|
// this is a safeguard, breaking on compile time in case
|
|
// `log.Logger` does not adhere to our `Logger` interface.
|
|
// see https://golang.org/doc/faq#guarantee_satisfies_interface
|
|
var _ Logger = &log.Logger{}
|
|
|
|
// DefaultLogger returns a `Logger` implementation
|
|
// backed by stdlib's log
|
|
func DefaultLogger() *log.Logger {
|
|
return log.New(os.Stdout, "", log.LstdFlags)
|
|
}
|
|
|
|
func newLogger(custom Logger) Logger {
|
|
if custom != nil {
|
|
return custom
|
|
}
|
|
|
|
return DefaultLogger()
|
|
}
|
|
|