mirror of
https://github.com/crazy-max/diun.git
synced 2025-12-25 23:03:58 +01:00
Bumps [go.etcd.io/bbolt](https://github.com/etcd-io/bbolt) from 1.3.11 to 1.4.0. - [Release notes](https://github.com/etcd-io/bbolt/releases) - [Commits](https://github.com/etcd-io/bbolt/compare/v1.3.11...v1.4.0) --- updated-dependencies: - dependency-name: go.etcd.io/bbolt dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
114 lines
2.5 KiB
Go
114 lines
2.5 KiB
Go
package bbolt
|
|
|
|
// See https://github.com/etcd-io/raft/blob/main/logger.go
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
"log"
|
|
"os"
|
|
)
|
|
|
|
type Logger interface {
|
|
Debug(v ...interface{})
|
|
Debugf(format string, v ...interface{})
|
|
|
|
Error(v ...interface{})
|
|
Errorf(format string, v ...interface{})
|
|
|
|
Info(v ...interface{})
|
|
Infof(format string, v ...interface{})
|
|
|
|
Warning(v ...interface{})
|
|
Warningf(format string, v ...interface{})
|
|
|
|
Fatal(v ...interface{})
|
|
Fatalf(format string, v ...interface{})
|
|
|
|
Panic(v ...interface{})
|
|
Panicf(format string, v ...interface{})
|
|
}
|
|
|
|
func getDiscardLogger() Logger {
|
|
return discardLogger
|
|
}
|
|
|
|
var (
|
|
discardLogger = &DefaultLogger{Logger: log.New(io.Discard, "", 0)}
|
|
)
|
|
|
|
const (
|
|
calldepth = 2
|
|
)
|
|
|
|
// DefaultLogger is a default implementation of the Logger interface.
|
|
type DefaultLogger struct {
|
|
*log.Logger
|
|
debug bool
|
|
}
|
|
|
|
func (l *DefaultLogger) EnableTimestamps() {
|
|
l.SetFlags(l.Flags() | log.Ldate | log.Ltime)
|
|
}
|
|
|
|
func (l *DefaultLogger) EnableDebug() {
|
|
l.debug = true
|
|
}
|
|
|
|
func (l *DefaultLogger) Debug(v ...interface{}) {
|
|
if l.debug {
|
|
_ = l.Output(calldepth, header("DEBUG", fmt.Sprint(v...)))
|
|
}
|
|
}
|
|
|
|
func (l *DefaultLogger) Debugf(format string, v ...interface{}) {
|
|
if l.debug {
|
|
_ = l.Output(calldepth, header("DEBUG", fmt.Sprintf(format, v...)))
|
|
}
|
|
}
|
|
|
|
func (l *DefaultLogger) Info(v ...interface{}) {
|
|
_ = l.Output(calldepth, header("INFO", fmt.Sprint(v...)))
|
|
}
|
|
|
|
func (l *DefaultLogger) Infof(format string, v ...interface{}) {
|
|
_ = l.Output(calldepth, header("INFO", fmt.Sprintf(format, v...)))
|
|
}
|
|
|
|
func (l *DefaultLogger) Error(v ...interface{}) {
|
|
_ = l.Output(calldepth, header("ERROR", fmt.Sprint(v...)))
|
|
}
|
|
|
|
func (l *DefaultLogger) Errorf(format string, v ...interface{}) {
|
|
_ = l.Output(calldepth, header("ERROR", fmt.Sprintf(format, v...)))
|
|
}
|
|
|
|
func (l *DefaultLogger) Warning(v ...interface{}) {
|
|
_ = l.Output(calldepth, header("WARN", fmt.Sprint(v...)))
|
|
}
|
|
|
|
func (l *DefaultLogger) Warningf(format string, v ...interface{}) {
|
|
_ = l.Output(calldepth, header("WARN", fmt.Sprintf(format, v...)))
|
|
}
|
|
|
|
func (l *DefaultLogger) Fatal(v ...interface{}) {
|
|
_ = l.Output(calldepth, header("FATAL", fmt.Sprint(v...)))
|
|
os.Exit(1)
|
|
}
|
|
|
|
func (l *DefaultLogger) Fatalf(format string, v ...interface{}) {
|
|
_ = l.Output(calldepth, header("FATAL", fmt.Sprintf(format, v...)))
|
|
os.Exit(1)
|
|
}
|
|
|
|
func (l *DefaultLogger) Panic(v ...interface{}) {
|
|
l.Logger.Panic(v...)
|
|
}
|
|
|
|
func (l *DefaultLogger) Panicf(format string, v ...interface{}) {
|
|
l.Logger.Panicf(format, v...)
|
|
}
|
|
|
|
func header(lvl, msg string) string {
|
|
return fmt.Sprintf("%s: %s", lvl, msg)
|
|
}
|