mirror of
https://github.com/grafana/grafana.git
synced 2025-02-14 17:43:35 -06:00
18 lines
565 B
Go
18 lines
565 B
Go
|
package logger
|
||
|
|
||
|
// Logger is used primarily to facilitate logging/user feedback for both
|
||
|
// the grafana-cli and the grafana backend when managing plugin installs
|
||
|
type Logger interface {
|
||
|
Successf(format string, args ...interface{})
|
||
|
Failuref(format string, args ...interface{})
|
||
|
|
||
|
Info(args ...interface{})
|
||
|
Infof(format string, args ...interface{})
|
||
|
Debug(args ...interface{})
|
||
|
Debugf(format string, args ...interface{})
|
||
|
Warn(args ...interface{})
|
||
|
Warnf(format string, args ...interface{})
|
||
|
Error(args ...interface{})
|
||
|
Errorf(format string, args ...interface{})
|
||
|
}
|