(format string, args ...interface{})
| 358 | } |
| 359 | |
| 360 | func (entry *Entry) Debugf(format string, args ...interface{}) { |
| 361 | entry.Logf(DebugLevel, format, args...) |
| 362 | } |
| 363 | |
| 364 | func (entry *Entry) Infof(format string, args ...interface{}) { |
| 365 | entry.Logf(InfoLevel, format, args...) |