Improved error reporting

This commit is contained in:
2023-07-19 15:43:58 -04:00
parent 170312fef8
commit 69d8424cb6
+1 -1
View File
@@ -290,7 +290,7 @@ public class Mob extends AbstractIntelligenceAgent {
try { try {
initializeMob(false, false, this.isPlayerGuard); initializeMob(false, false, this.isPlayerGuard);
} catch (Exception e) { } catch (Exception e) {
Logger.error(e); Logger.error("Mobile:" + this.dbID + ": " + e);
} }
} }