Entry Println family functions Debugln record a debug level log.
(args ...interface{})
| 145 | |
| 146 | // Debugln record a debug level log. |
| 147 | func (entry *Entry) Debugln(args ...interface{}) { |
| 148 | (*logrus.Entry)(entry).Debugln(args...) |
| 149 | } |
| 150 | |
| 151 | // Infoln record a info level log. |
| 152 | func (entry *Entry) Infoln(args ...interface{}) { |
no outgoing calls