diff --git a/spiffworkflow-backend/src/spiffworkflow_backend/services/logging_service.py b/spiffworkflow-backend/src/spiffworkflow_backend/services/logging_service.py index 67d0508a..25f00d63 100644 --- a/spiffworkflow-backend/src/spiffworkflow_backend/services/logging_service.py +++ b/spiffworkflow-backend/src/spiffworkflow_backend/services/logging_service.py @@ -212,7 +212,7 @@ class DBHandler(logging.Handler): # if we do not have a process instance id then do not log and assume we are running a script unit test # that initializes a BpmnWorkflow without a process instance if record and record.process_instance_id: # type: ignore - bpmn_process_identifier = record.workflow # type: ignore + bpmn_process_identifier = record.workflow_spec # type: ignore bpmn_process_name = record.workflow_name # type: ignore spiff_task_guid = str(record.task_id) # type: ignore bpmn_task_identifier = str(record.task_spec) # type: ignore