(v ...interface{})
| 29 | } |
| 30 | |
| 31 | func (l *Logger) Debug(v ...interface{}) { |
| 32 | l.debugLog.Println(v...) |
| 33 | } |
| 34 | |
| 35 | func (l *Logger) Error(v ...interface{}) { |
| 36 | l.errorLog.Println(v...) |
nothing calls this directly
no outgoing calls
no test coverage detected