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 inspector ready message to be vendor agnostic #7182

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
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
5 changes: 1 addition & 4 deletions src/inspector_agent.cc
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,7 @@ const char DEVTOOLS_PATH[] = "/node";

void PrintDebuggerReadyMessage(int port) {
fprintf(stderr, "Debugger listening on port %d.\n"
"To start debugging, open the following URL in Chrome:\n"
" chrome-devtools://devtools/remote/serve_file/"
"@521e5b7e2b7cc66b4006a8a54cb9c4e57494a5ef/inspector.html?"
"experiments=true&v8only=true&ws=localhost:%d/node\n", port, port);
"To start debugging, open your preferred debugging tool, and select this process.", port);
}

bool AcceptsConnection(inspector_socket_t* socket, const char* path) {
Expand Down