Skip to content

Commit

Permalink
Usage log now saving caller type name instead of caller name
Browse files Browse the repository at this point in the history
  • Loading branch information
adecler authored and al-fisher committed Sep 16, 2020
1 parent ddc647d commit 6849bc8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dynamo13/Dynamo_Engine/Compute/RunCaller.cs
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ public static object RunCaller(string callerId, object a1, object a2, object a3,
// Log usage
try
{
UI.Compute.LogUsage("Dynamo", "2.0", Guid.Parse(callerId), caller?.Name, caller?.SelectedItem, events);
UI.Compute.LogUsage("Dynamo", "1.3", Guid.Parse(callerId), caller?.GetType().Name, caller?.SelectedItem, events);
}
catch { }

Expand Down
2 changes: 1 addition & 1 deletion Dynamo20/Dynamo_Engine/Compute/RunCaller.cs
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ public static object RunCaller(string callerId, object a1, object a2, object a3,
// Log usage
try
{
UI.Compute.LogUsage("Dynamo", "2.0", Guid.Parse(callerId), caller?.Name, caller?.SelectedItem, events);
UI.Compute.LogUsage("Dynamo", "2.0", Guid.Parse(callerId), caller?.GetType().Name, caller?.SelectedItem, events);
}
catch { }

Expand Down

0 comments on commit 6849bc8

Please sign in to comment.