Debugf prints logging if logging level >= debug
(format string, a ...interface{})
| 124 | |
| 125 | // Debugf prints logging if logging level >= debug |
| 126 | func Debugf(format string, a ...interface{}) { |
| 127 | printf(DebugLevel, format, a...) |
| 128 | } |
| 129 | |
| 130 | // Verbosef prints logging if logging level >= verbose |
| 131 | func Verbosef(format string, a ...interface{}) { |
no test coverage detected