(format string, args ...any)
| 10 | } |
| 11 | |
| 12 | func (e *Engine) logInfof(format string, args ...any) { |
| 13 | if e == nil || e.state.log == nil { |
| 14 | return |
| 15 | } |
| 16 | e.state.log.Infof(format, args...) |
| 17 | } |
| 18 | |
| 19 | func (e *Engine) logWarningf(format string, args ...any) { |
| 20 | if e == nil || e.state.log == nil { |
no test coverage detected