FormatLogger is a logs interface that output logs with a format.
| 24 | |
| 25 | // FormatLogger is a logs interface that output logs with a format. |
| 26 | type FormatLogger interface { |
| 27 | Tracef(format string, v ...interface{}) |
| 28 | Debugf(format string, v ...interface{}) |
| 29 | Infof(format string, v ...interface{}) |
| 30 | Noticef(format string, v ...interface{}) |
| 31 | Warnf(format string, v ...interface{}) |
| 32 | Errorf(format string, v ...interface{}) |
| 33 | Fatalf(format string, v ...interface{}) |
| 34 | } |
| 35 | |
| 36 | // Logger is a logs interface that provides logging function with levels. |
| 37 | type Logger interface { |
no outgoing calls
no test coverage detected