Skip to content

Commit

Permalink
Add ClientId to ApiClientConnection
Browse files Browse the repository at this point in the history
  • Loading branch information
GeoChatterApp committed Sep 13, 2022
1 parent 8ea4d20 commit cb7d4be
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@ public ApiClientConnection()
/// <summary>
///
/// </summary>
public string ClientId { get; set; }
/// <summary>
///
/// </summary>
public string ChannelName { get; set; }
/// <summary>
///
Expand All @@ -45,7 +49,7 @@ public ApiClientConnection()
/// <returns></returns>
public override string ToString()
{
return $"{ChannelId} ({MapID}) ({ClientVersion}) ({ConnectionId})";
return $"{ChannelId} (map:{MapID}) (ver:{ClientVersion}) (conn:{ConnectionId}) (client:{ClientId})";
}
}

Expand Down

0 comments on commit cb7d4be

Please sign in to comment.