Print Error details when failing to save player data

This commit is contained in:
Aikar 2018-06-15 20:37:03 -04:00
parent d50334d6e8
commit 4ec0188c4d

View file

@ -19,7 +19,13 @@
try {
CompoundTag nbttagcompound = player.saveWithoutId(new CompoundTag());
Path path = this.playerDir.toPath();
@@ -49,34 +52,55 @@
@@ -44,39 +47,60 @@
Util.safeReplaceFile(path2, path1, path3);
} catch (Exception exception) {
- PlayerDataStorage.LOGGER.warn("Failed to save player data for {}", player.getName().getString());
+ PlayerDataStorage.LOGGER.warn("Failed to save player data for {}", player.getScoreboardName(), exception); // Paper - Print exception
}
}