mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-30 16:19:03 +01:00
Print Error details when failing to save player data
This commit is contained in:
parent
d50334d6e8
commit
4ec0188c4d
1 changed files with 7 additions and 1 deletions
|
@ -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
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue