We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9aaefab commit c7cc185Copy full SHA for c7cc185
shell/agents/Microsoft.Azure.Agent/Utils.cs
@@ -87,7 +87,9 @@ private CorruptDataException(string message)
87
88
internal static CorruptDataException Create(string message, CopilotActivity activity)
89
{
90
- return new CorruptDataException($"Unexpected copilot activity received. {message}\n\n{activity.Serialize()}\n");
+ string errorMessage = $"Unexpected copilot activity received. {message}\n\n{activity.Serialize()}\n";
91
+ Telemetry.Trace(AzTrace.Exception(errorMessage));
92
+ return new CorruptDataException(errorMessage);
93
}
94
95
0 commit comments