14 lines
316 B
Go
14 lines
316 B
Go
package stomp
|
|
|
|
type Logger interface {
|
|
Debugf(format string, value ...interface{})
|
|
Infof(format string, value ...interface{})
|
|
Warningf(format string, value ...interface{})
|
|
Errorf(format string, value ...interface{})
|
|
|
|
Debug(message string)
|
|
Info(message string)
|
|
Warning(message string)
|
|
Error(message string)
|
|
}
|