(s string, v ...any)
| 38 | } |
| 39 | |
| 40 | func (cl *CondLogger) Error(s string, v ...any) error { |
| 41 | return cl.log(ERROR, "ERROR "+s, v...) |
| 42 | } |
| 43 | |
| 44 | func (cl *CondLogger) Warning(s string, v ...any) error { |
| 45 | return cl.log(WARNING, "WARNING "+s, v...) |
no test coverage detected