(format string, args ...any)
| 25 | } |
| 26 | |
| 27 | func (wg *WireGuard) emitWarningLogf(format string, args ...any) { |
| 28 | wg.emitLogf(logSeverityWarning, format, args...) |
| 29 | } |
| 30 | |
| 31 | func (wg *WireGuard) emitErrorLogf(format string, args ...any) { |
| 32 | wg.emitLogf(logSeverityError, format, args...) |
no test coverage detected