type Logger interface {
Level() loglevel.LogLevel Debug(format string, v ...interface{})
Info(format string, v ...interface{})
Statistics(format string, v ...interface{})
Warn(format string, v ...interface{})
Error(format string, v ...interface{})
Fatal(format string, v ...interface{})
}