Skip to content

Commit

Permalink
disabled debug messages
Browse files Browse the repository at this point in the history
  • Loading branch information
rsoika committed Nov 25, 2024
1 parent 13061c7 commit ab74a4d
Showing 1 changed file with 11 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,8 @@ public ItemCollection nextModelElement(ItemCollection event, ItemCollection work
"$modelversion " + version + " ambiguous sequence flow: " + workitem.getTaskID() + "."
+ workitem.getEventID());
}
logger.info("nextModelElement " + key + " took " + (System.currentTimeMillis() - l) + "ms");
// logger.info("nextModelElement " + key + " took " +
// (System.currentTimeMillis() - l) + "ms");
return BPMNEntityBuilder.build(nextElement);

}
Expand Down Expand Up @@ -898,8 +899,9 @@ private ItemCollection lookupDefinition(final BPMNModel model) {
// convert model version new item name
result.setItemValue(WorkflowKernel.MODELVERSION, result.getItemValueString("txtworkflowmodelversion"));

logger.info("lookupDefinition " + result.getItemValueString("txtworkflowmodelversion") + " took "
+ (System.currentTimeMillis() - l) + "ms");
// logger.info("lookupDefinition " +
// result.getItemValueString("txtworkflowmodelversion") + " took "
// + (System.currentTimeMillis() - l) + "ms");
return result;
}

Expand Down Expand Up @@ -1005,8 +1007,9 @@ private Event lookupEventElementByID(final BPMNModel model, int taskID, int even
if (id != null && !id.isEmpty()) {
try {
if (eventID == Long.parseLong(id)) {
logger.info(
"lookupEventByID " + keyEvent + " took " + (System.currentTimeMillis() - l) + "ms");
// logger.info(
// "lookupEventByID " + keyEvent + " took " + (System.currentTimeMillis() - l) +
// "ms");
return event;
}
} catch (NumberFormatException e) {
Expand Down Expand Up @@ -1034,8 +1037,9 @@ private Event lookupEventElementByID(final BPMNModel model, int taskID, int even
try {
if (eventID == Long.parseLong(id)) {
// match!
logger.info(
"lookupEventByID " + keyEvent + " took " + (System.currentTimeMillis() - l) + "ms");
// logger.info(
// "lookupEventByID " + keyEvent + " took " + (System.currentTimeMillis() - l) +
// "ms");
return (Event) inEvent;
}
} catch (NumberFormatException e) {
Expand Down

0 comments on commit ab74a4d

Please sign in to comment.