Fix: log message typo

This commit is contained in:
xjasonlyu
2023-03-30 18:11:08 +08:00
parent 195290884c
commit 1b8e063485
+1 -1
View File
@@ -64,7 +64,7 @@ func handleUDPConn(uc adapter.UDPConn) {
log.Infof("[UDP] %s <-> %s", metadata.SourceAddress(), metadata.DestinationAddress())
if err = relayPacket(uc, pc, remote); err != nil {
log.Debugf("[TCP] %s <-> %s: %v", metadata.SourceAddress(), metadata.DestinationAddress(), err)
log.Debugf("[UDP] %s <-> %s: %v", metadata.SourceAddress(), metadata.DestinationAddress(), err)
}
}