ExtLogger is a common interface for logrus.Logger and logrus.Entry. Much like Ext1FieldLogger from logrus.go, it says not to use it, yet it's currently the best option.
| 14 | // ExtLogger is a common interface for logrus.Logger and logrus.Entry. |
| 15 | // Much like Ext1FieldLogger from logrus.go, it says not to use it, yet it's currently the best option. |
| 16 | type ExtLogger interface { |
| 17 | logrus.FieldLogger |
| 18 | Tracef(format string, args ...any) |
| 19 | Trace(args ...any) |
| 20 | Traceln(args ...any) |
| 21 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…