From 4e6fdcdb097e9db4e67d22f1a1e2ef9dca86083d Mon Sep 17 00:00:00 2001 From: Josh Gavant Date: Wed, 5 Apr 2017 10:49:46 -0700 Subject: [PATCH] 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: _tbd_ Reviewed-By: _tbd_ --- src/inspector_socket_server.cc | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/inspector_socket_server.cc b/src/inspector_socket_server.cc index 07efed4972aaef..1555e45dd6f4aa 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");