From 5094cb4115d52b8e915849cc9c7b9ca9bc37edd9 Mon Sep 17 00:00:00 2001 From: Felipe C Date: Mon, 11 Dec 2023 11:43:06 -0500 Subject: [PATCH] fix: wrong default port in docs (#40665) fix: wrong default port --- docs/tutorial/debugging-main-process.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/tutorial/debugging-main-process.md b/docs/tutorial/debugging-main-process.md index 9b0b2ae6bcb..811c87a2005 100644 --- a/docs/tutorial/debugging-main-process.md +++ b/docs/tutorial/debugging-main-process.md @@ -14,10 +14,10 @@ process: Electron will listen for V8 inspector protocol messages on the specified `port`, an external debugger will need to connect on this port. The default `port` is -`5858`. +`9229`. ```shell -electron --inspect=5858 your/app +electron --inspect=9229 your/app ``` ### `--inspect-brk=[port]`