Improved error logging.

This commit is contained in:
2023-05-12 08:09:17 -04:00
parent d99fc602d5
commit fafd77c661
+1 -1
View File
@@ -249,7 +249,7 @@ public class NPC extends AbstractCharacter {
this.name += " the " + this.contract.getName(); this.name += " the " + this.contract.getName();
}catch(Exception e){ }catch(Exception e){
Logger.error(e); Logger.error("NPC: " + this.dbID + " :" + e);
e.printStackTrace(); e.printStackTrace();
} }