mirror of https://github.com/grafana/grafana.git
65 lines
1.4 KiB
Go
65 lines
1.4 KiB
Go
package manager
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/grafana/grafana/pkg/infra/log"
|
|
)
|
|
|
|
type InfraLogWrapper struct {
|
|
l log.Logger
|
|
|
|
debugMode bool
|
|
}
|
|
|
|
func newInstallerLogger(name string, debugMode bool) (l *InfraLogWrapper) {
|
|
return &InfraLogWrapper{
|
|
debugMode: debugMode,
|
|
l: log.New(name),
|
|
}
|
|
}
|
|
|
|
func (l *InfraLogWrapper) Successf(format string, args ...interface{}) {
|
|
l.l.Info(fmt.Sprintf(format, args...))
|
|
}
|
|
|
|
func (l *InfraLogWrapper) Failuref(format string, args ...interface{}) {
|
|
l.l.Error(fmt.Sprintf(format, args...))
|
|
}
|
|
|
|
func (l *InfraLogWrapper) Info(args ...interface{}) {
|
|
l.l.Info(fmt.Sprint(args...))
|
|
}
|
|
|
|
func (l *InfraLogWrapper) Infof(format string, args ...interface{}) {
|
|
l.l.Info(fmt.Sprintf(format, args...))
|
|
}
|
|
|
|
func (l *InfraLogWrapper) Debug(args ...interface{}) {
|
|
if l.debugMode {
|
|
l.l.Debug(fmt.Sprint(args...))
|
|
}
|
|
}
|
|
|
|
func (l *InfraLogWrapper) Debugf(format string, args ...interface{}) {
|
|
if l.debugMode {
|
|
l.l.Debug(fmt.Sprintf(format, args...))
|
|
}
|
|
}
|
|
|
|
func (l *InfraLogWrapper) Warn(args ...interface{}) {
|
|
l.l.Warn(fmt.Sprint(args...))
|
|
}
|
|
|
|
func (l *InfraLogWrapper) Warnf(format string, args ...interface{}) {
|
|
l.l.Warn(fmt.Sprintf(format, args...))
|
|
}
|
|
|
|
func (l *InfraLogWrapper) Error(args ...interface{}) {
|
|
l.l.Error(fmt.Sprint(args...))
|
|
}
|
|
|
|
func (l *InfraLogWrapper) Errorf(format string, args ...interface{}) {
|
|
l.l.Error(fmt.Sprintf(format, args...))
|
|
}
|