kairos-sdk/logger/interface.go
Itxaka b0c740c961 First pass
Signed-off-by: Itxaka <itxaka@kairos.io>
2023-08-11 11:41:28 +02:00

19 lines
426 B
Go

package logger
type Interface interface {
Info(...interface{})
Warn(...interface{})
Debug(...interface{})
Error(...interface{})
Fatal(...interface{})
Panic(...interface{})
Trace(...interface{})
Infof(string, ...interface{})
Warnf(string, ...interface{})
Debugf(string, ...interface{})
Errorf(string, ...interface{})
Fatalf(string, ...interface{})
Panicf(string, ...interface{})
Tracef(string, ...interface{})
}