Skip to content

Commit

Permalink
Update StateMachine.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
zeusongit committed Jun 21, 2024
1 parent 7f4373d commit 229dd2f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/DynamoCoreWpf/ViewModels/Core/StateMachine.cs
Original file line number Diff line number Diff line change
Expand Up @@ -179,10 +179,11 @@ internal void BeginConnection(Guid nodeId, int portIndex, PortType portType)
try
{
portModel = isInPort ? node.InPorts[portIndex] : node.OutPorts[portIndex];
this.DynamoViewModel.Model.Logger.Log("test connection");
}
catch(Exception ex)
{
System.Diagnostics.Debug.WriteLine("Failed to make connection: " + ex.Message);
this.DynamoViewModel.Model.Logger.Log("Failed to make connection: " + ex.Message);
return;
}

Expand Down

0 comments on commit 229dd2f

Please sign in to comment.