remove unused

This commit is contained in:
cxxpxr 2021-04-07 18:42:57 -04:00
parent 13dd094782
commit c8a20636d9
2 changed files with 2 additions and 2 deletions

View file

@ -11,7 +11,6 @@ namespace LightReflectiveMirror.LoadBalancing
public int ConnectedServerPingRate = 10000; public int ConnectedServerPingRate = 10000;
public string AuthKey = "AuthKey"; public string AuthKey = "AuthKey";
public ushort EndpointPort = 7070; public ushort EndpointPort = 7070;
public ushort RelayEndpointPort = 8080;
public bool ShowDebugLogs = false; public bool ShowDebugLogs = false;
} }
} }

View file

@ -103,8 +103,9 @@ namespace LightReflectiveMirror.Endpoints
return true; return true;
} }
catch catch (Exception e)
{ {
Console.WriteLine(e);
return false; return false;
} }