Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
QilongTang committed May 17, 2024
1 parent aef43f9 commit 3a333e7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -370,9 +370,9 @@ protected virtual void OnClicked()
var nodeModel = Model.CreateNode();
Clicked(nodeModel, Position);
}
catch (Exception)
catch (Exception ex)
{
searchViewModel.dynamoViewModel.Model.Logger.Log("Failed to create node from search element: " + Model.Name);
searchViewModel.dynamoViewModel.Model.Logger.Log("Failed to create node from search element: " + Model.Name + "\n" + ex.Message);
searchViewModel.dynamoViewModel.MainGuideManager.CreateRealTimeInfoWindow(Wpf.Properties.Resources.NodeInCanvasSearchCreationError + Model.Name, true);
}
}
Expand Down

0 comments on commit 3a333e7

Please sign in to comment.