Skip to content

Commit c592282

Browse files
novascreenSteveSandersonMS
authored andcommitted
Fix Node debugging by catching warning
1 parent b86e9f9 commit c592282

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/Microsoft.AspNetCore.NodeServices/HostingModels/OutOfProcessNodeInstance.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -405,6 +405,7 @@ private static bool IsDebuggerMessage(string message)
405405
return message.StartsWith("Debugger attached", StringComparison.OrdinalIgnoreCase) ||
406406
message.StartsWith("Debugger listening ", StringComparison.OrdinalIgnoreCase) ||
407407
message.StartsWith("To start debugging", StringComparison.OrdinalIgnoreCase) ||
408+
message.Equals("Warning: This is an experimental feature and could change at any time.", StringComparison.OrdinalIgnoreCase) ||
408409
message.Contains("chrome-devtools:");
409410
}
410411

0 commit comments

Comments
 (0)