Skip to content

Commit de2a6d5

Browse files
committed
ExecutionError.Message will contain full exception information
1 parent b41bc0d commit de2a6d5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/WorkflowCore/Services/WorkflowExecutor.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ public async Task<WorkflowExecutorResult> Execute(WorkflowInstance workflow, Can
8989
WorkflowId = workflow.Id,
9090
ExecutionPointerId = pointer.Id,
9191
ErrorTime = _datetimeProvider.UtcNow,
92-
Message = ex.Message
92+
Message = ex.ToString()
9393
});
9494

9595
_executionResultProcessor.HandleStepException(workflow, def, pointer, step, ex);

0 commit comments

Comments
 (0)