| 1 | package core |
| 2 | |
| 3 | type Logger interface { |
| 4 | |
| 5 | //basic log method |
| 6 | Log(prefix string, format string, v ...interface{}) |
| 7 | |
| 8 | //log with different level. |
| 9 | Debug(format string, v ...interface{}) |
| 10 | Info(format string, v ...interface{}) |
| 11 | Warn(format string, v ...interface{}) |
| 12 | Error(format string, v ...interface{}) |
| 13 | Panic(format string, v ...interface{}) |
| 14 | } |
no outgoing calls
no test coverage detected