diff --git a/docs/public-networks/reference/cli/options.md b/docs/public-networks/reference/cli/options.md
index 2c5c3373b6..c39d67b29b 100644
--- a/docs/public-networks/reference/cli/options.md
+++ b/docs/public-networks/reference/cli/options.md
@@ -2965,6 +2965,45 @@ p2p-port="1789"
The P2P listening ports (UDP and TCP). The default is `30303`. You must [expose ports appropriately](../../how-to/connect/configure-ports.md).
+### `plugin-continue-on-error`
+
+
+
+
+```bash
+--plugin-continue-on-error[=]
+```
+
+
+
+
+```bash
+--plugin-continue-on-error=true
+```
+
+
+
+
+```bash
+BESU_PLUGIN_CONTINUE_ON_ERROR=true
+```
+
+
+
+
+```bash
+plugin-continue-on-error=true
+```
+
+
+
+
+Enables or disables continuing to run Besu if a plugin fails during registration or other startup lifecycle stages.
+If set to `true` and any plugin fails, Besu logs the error and continues running.
+If set to `false`and any plugin fails, Besu throws a `RuntimeException` and stops running.
+
+The default is `false`.
+
### `print-paths-and-exit`