Skip to content

Commit

Permalink
Add inbound packet log marker
Browse files Browse the repository at this point in the history
Stops log spam for received packets

Bump version to 1.9.30

Fixes #74
  • Loading branch information
Su5eD committed Oct 30, 2023
1 parent 67f9824 commit 503a202
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ protected void registerPendingChannels(ChannelInfoHolder holder) {

// always supposed to handle async!
protected boolean handle(Identifier channelName, PacketByteBuf originalBuf) {
this.logger.debug("Handling inbound packet from channel with name \"{}\"", channelName);
this.logger.debug(ClientConnection.PACKET_RECEIVED_MARKER, "Handling inbound packet from channel with name \"{}\"", channelName);

// Handle reserved packets
if (NetworkingImpl.REGISTER_CHANNEL.equals(channelName)) {
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -68,5 +68,5 @@ fabric-client-tags-api-v1-version=1.1.1
loom.platform=forge
forge_version=1.20.1-47.1.3
pack_format=15
forgified_version=1.9.29
forgified_version=1.9.30
forge_fabric_loader_version=2.3.4+0.14.21+1.20.1

0 comments on commit 503a202

Please sign in to comment.