(severity logSeverity, format string, args ...any)
| 33 | } |
| 34 | |
| 35 | func (wg *WireGuard) emitLogf(severity logSeverity, format string, args ...any) { |
| 36 | wg.emitLog(severity, fmt.Sprintf(format, args...)) |
| 37 | } |
| 38 | |
| 39 | func (wg *WireGuard) emitLog(severity logSeverity, message string) { |
| 40 | wg.mu.RLock() |
no test coverage detected