mirror of
https://github.com/FabricMC/fabric.git
synced 2024-11-22 15:47:57 -05:00
Use less spammy logging for invalid IDs in registration packets
This commit is contained in:
parent
a00e834bd3
commit
edbb166422
1 changed files with 1 additions and 1 deletions
|
@ -197,7 +197,7 @@ public abstract class AbstractChanneledNetworkAddon<H> extends AbstractNetworkAd
|
|||
try {
|
||||
ids.add(new Identifier(literal));
|
||||
} catch (InvalidIdentifierException ex) {
|
||||
this.logger.warn("Received invalid channel identifier \"{}\" from connection {}", literal, this.connection, ex);
|
||||
this.logger.warn("Received invalid channel identifier \"{}\" from connection {}", literal, this.connection);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue