9
0
mirror of https://github.com/VolmitSoftware/Iris.git synced 2025-12-28 11:39:07 +00:00

Better warnings

This commit is contained in:
cyberpwn
2021-08-29 07:51:00 -04:00
parent 48c1db6a8a
commit 443aa0040c
2 changed files with 13 additions and 5 deletions

View File

@@ -380,13 +380,11 @@ public class Mantle {
try {
return getSafe(x, z).get();
} catch (InterruptedException e) {
Iris.error("Failed to get Tectonic Plate " + x + " " + z + " Due to a thread intterruption");
Iris.warn("Failed to get Tectonic Plate " + x + " " + z + " Due to a thread intterruption (hotload?)");
Iris.reportError(e);
e.printStackTrace();
} catch (ExecutionException e) {
Iris.error("Failed to get Tectonic Plate " + x + " " + z + " Due to a thread execution exception");
Iris.warn("Failed to get Tectonic Plate " + x + " " + z + " Due to a thread execution exception (engine close?)");
Iris.reportError(e);
e.printStackTrace();
}
Iris.warn("Retrying to get " + x + " " + z + " Mantle Region");