Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosh Gavant <josh.gavant@outlook.com>2017-04-05 20:49:46 +0300
committerJames M Snell <jasnell@gmail.com>2017-04-14 00:59:58 +0300
commita4125a3c49f4557173189c68f772b869829cd79e (patch)
tree19a8f73419750166507f238af193ba354d2d8055 /src/inspector_socket_server.cc
parent8bd26d3aea0c3964881bfbd045080abea3f71012 (diff)
src: remove experimental warning for inspect
* Removes "experimental" warning. Fixes: https://github.com/nodejs/node/issues/11770 PR-URL: https://github.com/nodejs/node/pull/12352 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Michaƫl Zasso <targos@protonmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Evan Lucas <evanlucas@me.com> Reviewed-By: Alexey Orlenko <eaglexrlnk@gmail.com> Reviewed-By: Eugene Ostroukhov <eostroukhov@google.com> Reviewed-By: Ali Ijaz Sheikh <ofrobots@google.com>
Diffstat (limited to 'src/inspector_socket_server.cc')
-rw-r--r--src/inspector_socket_server.cc4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/inspector_socket_server.cc b/src/inspector_socket_server.cc
index 07efed4972a..1555e45dd6f 100644
--- a/src/inspector_socket_server.cc
+++ b/src/inspector_socket_server.cc
@@ -82,9 +82,7 @@ void PrintDebuggerReadyMessage(const std::string& host,
return;
}
fprintf(out,
- "Debugger listening on %s:%d.\n"
- "Warning: This is an experimental feature "
- "and could change at any time.\n",
+ "Debugger listening on %s:%d.\n",
host.c_str(), port);
if (ids.size() == 1)
fprintf(out, "To start debugging, open the following URL in Chrome:\n");