Skip to content

Commit

Permalink
feat: log actual error when activating processes (#67)
Browse files Browse the repository at this point in the history
  • Loading branch information
tdashworth authored Aug 9, 2021
1 parent 1f39c9e commit 302c849
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ private void SetStates(IEnumerable<Entity> processes, IEnumerable<string> proces
}
catch (Exception ex)
{
this.logger.LogError(ex, $"Status for process {deployedProcess.Attributes[Constants.Workflow.Fields.Name]} could not be set. Please check the processes for errors e.g. missing reference data or connections.");
this.logger.LogError(ex, $"Status for process {deployedProcess.Attributes[Constants.Workflow.Fields.Name]} could not be set. {ex.Message}");
}
}
}
Expand Down

0 comments on commit 302c849

Please sign in to comment.