We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 216b1f3 commit cb26b3dCopy full SHA for cb26b3d
backend/wireguard/log.go
@@ -17,7 +17,7 @@ const (
17
18
func formatWireGuardLogLine(severity logSeverity, message string) string {
19
timestamp := time.Now().Format(wireGuardLogTimestampFormat)
20
- return fmt.Sprintf("%s [%s] wireguard: %s", timestamp, severity, message)
+ return fmt.Sprintf("%s [%s] %s", timestamp, severity, message)
21
}
22
23
func (wg *WireGuard) emitInfoLogf(format string, args ...any) {
0 commit comments