This is an automated email from the ASF dual-hosted git repository.
davsclaus pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push:
new 4af23f3cb70 CAMEL-20067: camel-core - Add debuggingStandby option
4af23f3cb70 is described below
commit 4af23f3cb7083dcd0e2ef35116c8e0fc464249bd
Author: Claus Ibsen <[email protected]>
AuthorDate: Fri Nov 17 15:04:31 2023 +0100
CAMEL-20067: camel-core - Add debuggingStandby option
---
docs/user-manual/modules/ROOT/pages/backlog-debugger.adoc | 1 +
1 file changed, 1 insertion(+)
diff --git a/docs/user-manual/modules/ROOT/pages/backlog-debugger.adoc
b/docs/user-manual/modules/ROOT/pages/backlog-debugger.adoc
index 29b432ba841..5af57f5f8f0 100644
--- a/docs/user-manual/modules/ROOT/pages/backlog-debugger.adoc
+++ b/docs/user-manual/modules/ROOT/pages/backlog-debugger.adoc
@@ -23,6 +23,7 @@ NOTE: This requires to enabled JMX by including
`camel-management` JAR in the cl
|`bodyIncludeStreams` |`false` |Whether to include the message body of stream
based messages. If enabled then beware the stream may not be re-readable later.
See more about Stream Caching.
|`bodyMaxChars` |`128kb` |To limit the message body to a maximum size in the
traced message. Use 0 or negative value to use unlimited size.
|`includeExchangeProperties` |`true`|Whether to include the exchange
properties in the traced message.
+|`standby` | `false` |Whether the debugger is standby. If a debugger is in
standby then the debugger is activated during startup and are ready to be
enabled manually via JMX or calling the enableDebugger method.
|`enabled` |`false` |Whether the debugger is enabled or not.
|`singleStepMode` |`false` |Whether currently in single step mode of a single
Exchange.
|`singleStepLast` |`false` |In single step mode, then when the exchange is
complete, then simulate a breakpoint as last, that allows to suspend and watch
the exchange when complete (you can see message body as response, failed
exception etc).