Skip to content

Commit a4125a3

Browse files
joshgavjasnell
authored andcommitted
src: remove experimental warning for inspect
* Removes "experimental" warning. Fixes: #11770 PR-URL: #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>
1 parent 8bd26d3 commit a4125a3

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/inspector_socket_server.cc

+1-3
Original file line numberDiff line numberDiff line change
@@ -82,9 +82,7 @@ void PrintDebuggerReadyMessage(const std::string& host,
8282
return;
8383
}
8484
fprintf(out,
85-
"Debugger listening on %s:%d.\n"
86-
"Warning: This is an experimental feature "
87-
"and could change at any time.\n",
85+
"Debugger listening on %s:%d.\n",
8886
host.c_str(), port);
8987
if (ids.size() == 1)
9088
fprintf(out, "To start debugging, open the following URL in Chrome:\n");

0 commit comments

Comments
 (0)