From 558af5df767e330841501df2cfb54fccc9eb55f4 Mon Sep 17 00:00:00 2001 From: Eugene Ostroukhov Date: Wed, 11 May 2016 10:40:21 -0700 Subject: [PATCH] Prompt to open URL instead of starting the browser with a flag --- src/inspector_agent.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/inspector_agent.cc b/src/inspector_agent.cc index 3f1dbb8945e3c7..df3fe255e25a1a 100644 --- a/src/inspector_agent.cc +++ b/src/inspector_agent.cc @@ -377,9 +377,9 @@ void Agent::WorkerRun() { OnSocketConnection); } if (err == 0) { - printf("Start Chrome Canary with the " - "'--remote-debugging-targets=localhost:%d' " - "command line option and navigate to 'chrome://inspect'\n", port_); + printf("Navigate to chrome-devtools://devtools/remote/serve_file/" + "@4604d24a75168768584760ba56d175507941852f/inspector.html?" + "&experiments=true&ws=localhost:%d/node\n", port_); } else { fprintf(stderr, "Unable to open devtools socket: %s\n", uv_strerror(err)); assert(false);