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

Commit

Permalink
Update LightReflectiveMirrorTransport.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
Derek-R-S committed Apr 11, 2021
1 parent e2228cc commit 950ad45
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ private void SetupCallbacks()
clientToServerTransport.OnClientConnected = OnConnectedToRelay;
clientToServerTransport.OnClientDataReceived = DataReceived;
clientToServerTransport.OnClientDisconnected = Disconnected;
clientToServerTransport.OnClientError = (e) => { Debug.LogError("LRM | Transport Error: " + e); };
clientToServerTransport.OnClientError = (e) => Debug.LogException(e);
}

void Disconnected()
Expand Down

0 comments on commit 950ad45

Please sign in to comment.