Skip to content

Commit

Permalink
Update AbstractSession.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
laolarou726 committed Dec 11, 2023
1 parent 8df80ef commit 266d728
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Hive.Network.Shared/Session/AbstractSession.cs
Original file line number Diff line number Diff line change
Expand Up @@ -243,8 +243,8 @@ protected virtual async Task ReceiveLoop(CancellationToken token)
var bodyLen = totalLen - NetworkSettings.PacketBodyOffset;
var data = buffer.Slice(NetworkSettings.PacketBodyOffset, bodyLen);

Logger.LogDebug("Packet Length: {length}", totalLen);
Logger.LogDebug("Body Length: {length}", bodyLen);
Logger.LogTrace("Packet Length: {length}", totalLen);
Logger.LogTrace("Body Length: {length}", bodyLen);

FireMessageReceived(data);

Expand Down

0 comments on commit 266d728

Please sign in to comment.