Skip to content

Commit cb26b3d

Browse files
committed
fix: remove unnecessary log
1 parent 216b1f3 commit cb26b3d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backend/wireguard/log.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ const (
1717

1818
func formatWireGuardLogLine(severity logSeverity, message string) string {
1919
timestamp := time.Now().Format(wireGuardLogTimestampFormat)
20-
return fmt.Sprintf("%s [%s] wireguard: %s", timestamp, severity, message)
20+
return fmt.Sprintf("%s [%s] %s", timestamp, severity, message)
2121
}
2222

2323
func (wg *WireGuard) emitInfoLogf(format string, args ...any) {

0 commit comments

Comments
 (0)