diff --git a/imixs-workflow-core/src/main/java/org/imixs/workflow/WorkflowKernel.java b/imixs-workflow-core/src/main/java/org/imixs/workflow/WorkflowKernel.java index 94e44518d..70da8e08f 100644 --- a/imixs-workflow-core/src/main/java/org/imixs/workflow/WorkflowKernel.java +++ b/imixs-workflow-core/src/main/java/org/imixs/workflow/WorkflowKernel.java @@ -512,10 +512,10 @@ private ItemCollection processEvent(final ItemCollection documentContext, final ItemCollection documentResult = documentContext; boolean debug = logger.isLoggable(Level.FINE); // log the general processing message - String msg = "processing=" + documentContext.getItemValueString(UNIQUEID) + ", MODELVERSION=" - + documentContext.getItemValueString(MODELVERSION) + ", $taskID=" + documentContext.getTaskID() - + ", $eventID=" + documentContext.getEventID(); - + String msg = "⚙ processing: " + documentContext.getItemValueString(UNIQUEID) + " (" + + documentContext.getItemValueString(MODELVERSION) + " ▷ " + documentContext.getTaskID() + + "→" + documentContext.getEventID() + ")"; + if (ctx == null) { logger.warning("no WorkflowContext defined!"); }