Skip to content

Commit 289902e

Browse files
committed
inspector: fix dead 'For help' URL printed by --inspect
When running 'node --inspect', the bootstrapping output includes: For help, see: https://nodejs.org/en/docs/inspector That URL returns 404 on nodejs.org. The user-facing help guide for debugging with --inspect now lives at https://nodejs.org/en/learn/getting-started/debugging, so point the message at that instead. Refs: #62743
1 parent c3dd52a commit 289902e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/inspector_socket_server.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ void PrintDebuggerReadyMessage(
248248
}
249249
}
250250
fprintf(out, "For help, see: %s\n",
251-
"https://nodejs.org/en/docs/inspector");
251+
"https://nodejs.org/en/learn/getting-started/debugging");
252252
fflush(out);
253253
}
254254

0 commit comments

Comments
 (0)