Print Error details when failing to save player data
This commit is contained in:
@@ -19,7 +19,13 @@
|
|||||||
try {
|
try {
|
||||||
CompoundTag nbttagcompound = player.saveWithoutId(new CompoundTag());
|
CompoundTag nbttagcompound = player.saveWithoutId(new CompoundTag());
|
||||||
Path path = this.playerDir.toPath();
|
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
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user