mirror of
https://git.mirrors.martin98.com/https://github.com/ceph/ceph-csi.git
synced 2025-08-15 23:56:04 +08:00

Several packages are only used while running the e2e suite. These packages are less important to update, as the they can not influence the final executable that is part of the Ceph-CSI container-image. By moving these dependencies out of the main Ceph-CSI go.mod, it is easier to identify if a reported CVE affects Ceph-CSI, or only the testing (like most of the Kubernetes CVEs). Signed-off-by: Niels de Vos <ndevos@ibm.com>
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...)
|
|
}
|