(format string, args ...interface{})
| 354 | } |
| 355 | |
| 356 | func (entry *Entry) Tracef(format string, args ...interface{}) { |
| 357 | entry.Logf(TraceLevel, format, args...) |
| 358 | } |
| 359 | |
| 360 | func (entry *Entry) Debugf(format string, args ...interface{}) { |
| 361 | entry.Logf(DebugLevel, format, args...) |