KcpTransport: fixed ToString to match other transports

This commit is contained in:
MrGadget 2024-01-29 21:38:29 -05:00
parent af4d8e789e
commit 9d5b66a64f

View File

@ -365,7 +365,7 @@ protected virtual void OnLogStatistics()
}
}
public override string ToString() => $"KCP {port}";
public override string ToString() => $"KCP [{port}]";
}
}
//#endif MIRROR <- commented out because MIRROR isn't defined on first import yet