Tracef logs a message at level Trace on the standard logger.
(format string, args ...interface{})
| 181 | |
| 182 | // Tracef logs a message at level Trace on the standard logger. |
| 183 | func Tracef(format string, args ...interface{}) { |
| 184 | std.Tracef(format, args...) |
| 185 | } |
| 186 | |
| 187 | // Debugf logs a message at level Debug on the standard logger. |
| 188 | func Debugf(format string, args ...interface{}) { |