Skip to content

Commit

Permalink
Add missing stack trace
Browse files Browse the repository at this point in the history
Signed-off-by: Ross Allan <rallanpcl@gmail.com>
  • Loading branch information
LunNova committed Jul 17, 2013
1 parent 11d1ad1 commit a533fdd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/nallar/patched/storage/ThreadedChunkLoader.java
Expand Up @@ -256,7 +256,7 @@ public boolean writeNextIO() {
try {
this.writeChunkNBTTags(anvilchunkloaderpending);
} catch (Exception exception) {
Log.severe("Failed to write chunk data to disk " + Log.pos(anvilchunkloaderpending.chunkCoordinate.chunkXPos, anvilchunkloaderpending.chunkCoordinate.chunkZPos));
Log.severe("Failed to write chunk data to disk " + Log.pos(anvilchunkloaderpending.chunkCoordinate.chunkXPos, anvilchunkloaderpending.chunkCoordinate.chunkZPos), exception);
}

inProgressSaves.remove(key);
Expand Down

0 comments on commit a533fdd

Please sign in to comment.