diff --git a/src/modules/Elsa.Workflows.Runtime/Services/DefaultWorkflowDefinitionStorePopulator.cs b/src/modules/Elsa.Workflows.Runtime/Services/DefaultWorkflowDefinitionStorePopulator.cs index 3bdb8efdc..193b7a4e7 100644 --- a/src/modules/Elsa.Workflows.Runtime/Services/DefaultWorkflowDefinitionStorePopulator.cs +++ b/src/modules/Elsa.Workflows.Runtime/Services/DefaultWorkflowDefinitionStorePopulator.cs @@ -185,7 +185,7 @@ public class DefaultWorkflowDefinitionStorePopulator : IWorkflowDefinitionStoreP // Temporary measure to try and find the root cause of https://github.com/elsa-workflows/elsa-core/issues/5033 if (existingDefinitionVersion is null && workflowDefinitionsToSave.Any(w => w.Id == workflowDefinition.Id)) - _logger.LogError("Trying to create duplicate workflows with id {workflowId}", workflowDefinition.Id); + _logger.LogError("Trying to create duplicate workflows with id {WorkflowDefinitionId}", workflowDefinition.Id); else { workflowDefinitionsToSave.Add(workflowDefinition);