Debug code added

This commit is contained in:
2024-08-20 12:13:01 -04:00
parent 6c29321581
commit a8ea778c6e
+4
View File
@@ -58,6 +58,7 @@ public class PowerActionParser {
PowerActionEntry powerActionEntry = new PowerActionEntry();
EffectDescription effectDescription;
try {
// Remove all lines that contain a # and leading/trailing blank lines
powerActionData = powerActionData.replaceAll("(?m)^(\\s*#.*|\\s*)\r?\n?", "").trim();
@@ -150,6 +151,9 @@ public class PowerActionParser {
}
}
} catch (Exception e) {
Logger.error(powerActionEntry.action_id + " " + e);
}
return powerActionEntry;
}
}