Entry Printf family functions
(level Level, format string, args ...interface{})
| 348 | // Entry Printf family functions |
| 349 | |
| 350 | func (entry *Entry) Logf(level Level, format string, args ...interface{}) { |
| 351 | if entry.Logger.IsLevelEnabled(level) { |
| 352 | entry.Log(level, fmt.Sprintf(format, args...)) |
| 353 | } |
| 354 | } |
| 355 | |
| 356 | func (entry *Entry) Tracef(format string, args ...interface{}) { |
| 357 | entry.Logf(TraceLevel, format, args...) |