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 b86e9f9 commit c592282Copy full SHA for c592282
src/Microsoft.AspNetCore.NodeServices/HostingModels/OutOfProcessNodeInstance.cs
@@ -405,6 +405,7 @@ private static bool IsDebuggerMessage(string message)
405
return message.StartsWith("Debugger attached", StringComparison.OrdinalIgnoreCase) ||
406
message.StartsWith("Debugger listening ", StringComparison.OrdinalIgnoreCase) ||
407
message.StartsWith("To start debugging", StringComparison.OrdinalIgnoreCase) ||
408
+ message.Equals("Warning: This is an experimental feature and could change at any time.", StringComparison.OrdinalIgnoreCase) ||
409
message.Contains("chrome-devtools:");
410
}
411
0 commit comments