Fix meta warning

This commit is contained in:
KennyTV 2021-06-10 08:42:52 +02:00
parent 15cbc96697
commit b940ecab9c
No known key found for this signature in database
GPG Key ID: 6BE3B555EBC5982B
1 changed files with 1 additions and 1 deletions

View File

@ -471,7 +471,7 @@ public abstract class EntityRewriter<T extends Protocol> extends RewriterBase<T>
if (!Via.getConfig().isSuppressMetadataErrors() || Via.getManager().isDebug()) {
Logger logger = Via.getPlatform().getLogger();
logger.severe("An error occurred in metadata handler " + this.getClass().getSimpleName()
+ " for " + (type != null ? "untracked" : type.name()) + " entity type: " + metadata);
+ " for " + (type != null ? type.name() : "untracked") + " entity type: " + metadata);
logger.severe(metadataList.stream().sorted(Comparator.comparingInt(Metadata::id))
.map(Metadata::toString).collect(Collectors.joining("\n", "Full metadata: ", "")));
e.printStackTrace();