Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update browser launch regex to support non-default logging frameworks #3842

Merged
merged 5 commits into from
Jun 11, 2020
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
6 changes: 3 additions & 3 deletions debugger-launchjson.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ The default launch.json template (as of C# extension v1.20.0) for ASP.NET Core p
```json
"serverReadyAction": {
"action": "openExternally",
"pattern": "^\\s*Now listening on:\\s+(https?://\\S+)"
"pattern": "\\s*Now listening on:\\s+(https?://\\S+)"
steveoh marked this conversation as resolved.
Show resolved Hide resolved
}
```

Expand Down Expand Up @@ -87,7 +87,7 @@ If you want to ignore the URL from the console output, you can remove the
```json
"serverReadyAction": {
"action": "openExternally",
"pattern": "^\\s*Now listening on:\\s+https?://\\S",
"pattern": "\\s*Now listening on:\\s+https?://\\S",
"uriFormat": "http://localhost:1234"
}
```
Expand All @@ -97,7 +97,7 @@ If you want to use the port number from the console output, but not the host nam
```json
"serverReadyAction": {
"action": "openExternally",
"pattern": "^\\s*Now listening on:\\s+http://\\S+:([0-9]+)",
"pattern": "\\s*Now listening on:\\s+http://\\S+:([0-9]+)",
"uriFormat": "http://localhost:%s"
}
```
Expand Down