(format string, args ...any)
| 21 | } |
| 22 | |
| 23 | func (wg *WireGuard) emitInfoLogf(format string, args ...any) { |
| 24 | wg.emitLogf(logSeverityInfo, format, args...) |
| 25 | } |
| 26 | |
| 27 | func (wg *WireGuard) emitWarningLogf(format string, args ...any) { |
| 28 | wg.emitLogf(logSeverityWarning, format, args...) |
no test coverage detected