Skip to content

Commit

Permalink
fix(log): reduce logging noise
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielMcAssey committed Jan 12, 2025
1 parent cff82fe commit 31d8a79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GLOKON.Baiters.Core/BaitersServer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ internal void OnPlayerChat(ulong sender, string message)
protected void HandleNetworkPacket(ulong sender, byte[] data, DataChannel channel)
{
var parsedPacket = Packet.Parse(data);
Log.Debug("Received packet {0} on channel {1} from {2}", parsedPacket.Type, channel, sender);
Log.Verbose("Received packet {0} on channel {1} from {2}", parsedPacket.Type, channel, sender);
OnPacket?.Invoke(sender, parsedPacket);
}

Expand Down

0 comments on commit 31d8a79

Please sign in to comment.