Printf record a new non-level log.
(format string, args ...interface{})
| 113 | |
| 114 | // Printf record a new non-level log. |
| 115 | func (entry *Entry) Printf(format string, args ...interface{}) { |
| 116 | (*logrus.Entry)(entry).Printf(format, args...) |
| 117 | } |
| 118 | |
| 119 | // Warnf record a warning level log. |
| 120 | func (entry *Entry) Warnf(format string, args ...interface{}) { |
no outgoing calls