Skip to content

Commit e7198ce

Browse files
committed
Update event name
1 parent 237b757 commit e7198ce

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/mono/browser/debugger/BrowserDebugProxy/MonoProxy.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1536,12 +1536,12 @@ private async Task<bool> OnEvaluateOnCallFrame(MessageId msg_id, int scopeId, st
15361536

15371537
private void ReportDebuggerExceptionToTelemetry(string callingFunction, SessionId msg_id, CancellationToken token)
15381538
{
1539-
JObject reportBlazorDebugError = JObject.FromObject(new
1539+
JObject reportBlazorDebugException = JObject.FromObject(new
15401540
{
15411541
exceptionType = "uncaughtException",
15421542
error = $"BlazorDebugger exception at {callingFunction}",
15431543
});
1544-
SendEvent(msg_id, "DotnetDebugger.reportBlazorDebugError", reportBlazorDebugError, token);
1544+
SendEvent(msg_id, "DotnetDebugger.reportBlazorDebugException", reportBlazorDebugException, token);
15451545
}
15461546

15471547
internal async Task<GetMembersResult> GetScopeProperties(SessionId msg_id, int scopeId, CancellationToken token)

0 commit comments

Comments
 (0)