mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-30 00:00:11 +01:00
18 lines
484 B
Go
18 lines
484 B
Go
package nodes
|
|
|
|
type Logger interface {
|
|
Trace(msg string)
|
|
Debug(msg string)
|
|
Info(msg string)
|
|
Warn(msg string)
|
|
Error(msg string)
|
|
Critical(msg string)
|
|
Tracef(format string, args ...interface{})
|
|
Debugf(format string, args ...interface{})
|
|
Infof(format string, args ...interface{})
|
|
Warnf(format string, args ...interface{})
|
|
Errorf(format string, args ...interface{})
|
|
Criticalf(format string, args ...interface{})
|
|
Panic(msg string)
|
|
Panicf(format string, args ...interface{})
|
|
}
|