Show all errors on debug

This commit is contained in:
Matsv 2016-03-29 16:00:56 +02:00
parent e61f56b2e0
commit 55830b0dfb
2 changed files with 2 additions and 2 deletions

View File

@ -141,7 +141,7 @@ public class MetadataRewriter {
} }
} catch (Exception e) { } catch (Exception e) {
list.remove(entry); list.remove(entry);
if (!((ViaVersionPlugin) ViaVersion.getInstance()).isSuppressMetadataErrors()) { if (!ViaVersion.getConfig().isSuppressMetadataErrors() || ViaVersion.getInstance().isDebug()) {
System.out.println("INCLUDE THIS IN YOUR ERROR LOG!"); System.out.println("INCLUDE THIS IN YOUR ERROR LOG!");
if (type != null) if (type != null)
System.out.println("An error occurred with entity meta data for " + type + " OldID: " + entry.getId()); System.out.println("An error occurred with entity meta data for " + type + " OldID: " + entry.getId());

View File

@ -184,7 +184,7 @@ public class EntityPackets {
EntityTracker tracker = wrapper.user().get(EntityTracker.class); EntityTracker tracker = wrapper.user().get(EntityTracker.class);
if (tracker.getClientEntityTypes().containsKey(entityID)) { if (tracker.getClientEntityTypes().containsKey(entityID)) {
MetadataRewriter.transform(tracker.getClientEntityTypes().get(entityID), metadataList); MetadataRewriter.transform(tracker.getClientEntityTypes().get(entityID), metadataList);
} else if (!ViaVersion.getConfig().isUnknownEntitiesSuppressed()) { } else if (!ViaVersion.getConfig().isUnknownEntitiesSuppressed() || ViaVersion.getInstance().isDebug()) {
System.out.println("Unable to find entity for metadata, entity ID: " + entityID); System.out.println("Unable to find entity for metadata, entity ID: " + entityID);
metadataList.clear(); metadataList.clear();
} }