Skip to content
This repository was archived by the owner on Sep 5, 2022. It is now read-only.

Commit c8a2063

Browse files
committed
remove unused
1 parent 13dd094 commit c8a2063

File tree

2 files changed

+2
-2
lines changed
  • LoadBalancerProject-DONT-IMPORT-INTO-UNITY/LRM_LoadBalancer
  • ServerProject-DONT-IMPORT-INTO-UNITY/LRM

2 files changed

+2
-2
lines changed

LoadBalancerProject-DONT-IMPORT-INTO-UNITY/LRM_LoadBalancer/Config.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ class Config
1111
public int ConnectedServerPingRate = 10000;
1212
public string AuthKey = "AuthKey";
1313
public ushort EndpointPort = 7070;
14-
public ushort RelayEndpointPort = 8080;
1514
public bool ShowDebugLogs = false;
1615
}
1716
}

ServerProject-DONT-IMPORT-INTO-UNITY/LRM/Endpoint.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,9 @@ public bool Start(ushort port = 8080)
103103

104104
return true;
105105
}
106-
catch
106+
catch (Exception e)
107107
{
108+
Console.WriteLine(e);
108109
return false;
109110
}
110111

0 commit comments

Comments
 (0)