17 lines
263 B
Go
17 lines
263 B
Go
package telnet
|
|
|
|
|
|
type Logger interface{
|
|
Debug(...interface{})
|
|
Debugf(string, ...interface{})
|
|
|
|
Error(...interface{})
|
|
Errorf(string, ...interface{})
|
|
|
|
Trace(...interface{})
|
|
Tracef(string, ...interface{})
|
|
|
|
Warn(...interface{})
|
|
Warnf(string, ...interface{})
|
|
}
|