(msg string, args ...any)
| 63 | } |
| 64 | |
| 65 | func (h HCLogAdapter) Debug(msg string, args ...any) { |
| 66 | h.log.WithFields(toLogrusFields(args)).Debug(msg) |
| 67 | } |
| 68 | |
| 69 | func (h HCLogAdapter) Info(msg string, args ...any) { |
| 70 | h.log.WithFields(toLogrusFields(args)).Info(msg) |
no test coverage detected