Printf logs a message at level Info on the standard logger.
(format string, args ...interface{})
| 85 | |
| 86 | // Printf logs a message at level Info on the standard logger. |
| 87 | func (l *Logger) Printf(format string, args ...interface{}) { |
| 88 | Printf(format, args...) |
| 89 | } |
| 90 | |
| 91 | // NewCallerHook creates new CallerHook. |
| 92 | func NewCallerHook(stackLevels []logrus.Level) *CallerHook { |