Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Adding a log message as suggested by @radical
  • Loading branch information
thaystg authored and github-actions committed Oct 26, 2022
commit 5ca32a54fb18f77fd76ee4b4e55d0e6b5048bdce
4 changes: 3 additions & 1 deletion src/mono/wasm/debugger/BrowserDebugProxy/MonoProxy.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1568,9 +1568,11 @@ protected async Task<DebugStore> RuntimeReady(SessionId sessionId, CancellationT
context.SdbAgent.ResetStore(store);
return store;
}
catch (DebuggerAgentException)
catch (DebuggerAgentException e)
{
//it's not a wasm page then the command throws an error
if (!e.Message.Contains("getDotnetRuntime is not defined"))
logger.LogDebug($"Unexpected error on RuntimeReady {e}");
return null;
}
catch (Exception e)
Expand Down