Debug record a new debug level log.
(args ...interface{})
| 61 | |
| 62 | // Debug record a new debug level log. |
| 63 | func (entry *Entry) Debug(args ...interface{}) { |
| 64 | (*logrus.Entry)(entry).Debug(args...) |
| 65 | } |
| 66 | |
| 67 | // Print record a new non-level log. |
| 68 | func (entry *Entry) Print(args ...interface{}) { |
no outgoing calls