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 aec21bf Update doc
aec21bf is described below
commit aec21bf991eff2fd6e78bc2bf587dc1d36957f0c
Author: Claus Ibsen <[email protected]>
AuthorDate: Wed Dec 15 14:30:45 2021 +0100
Update doc
---
docs/user-manual/modules/ROOT/pages/backlog-debugger.adoc | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/docs/user-manual/modules/ROOT/pages/backlog-debugger.adoc
b/docs/user-manual/modules/ROOT/pages/backlog-debugger.adoc
index 84b4020..9a4fd97 100644
--- a/docs/user-manual/modules/ROOT/pages/backlog-debugger.adoc
+++ b/docs/user-manual/modules/ROOT/pages/backlog-debugger.adoc
@@ -33,10 +33,10 @@ NOTE: This requires to enabled JMX by including
`camel-management` JAR in the cl
|Option |Type |Description
|`addBreakpoint(nodeId)` |`void` |To add a breakpoint at the given node.
|`addConditionalBreakpoint(nodeId, language, predicate)` |`void` |To add a
conditional breakpoint at the given node. The predicate is created from the
language parameter.
-|`disableBreakpoint(nodeId)` |`void` |To disable a breakpoint temporary.
+|`disableBreakpoint(nodeId)` |`void` |To disable a breakpoint.
|`disableDebugger` |`void` |To disable the debugger
|`dumpTracedMessagesAsXml(nodeId)` |`String` |To dump the debugged messages
from the give node id in XML format.
-|`enableBreakpoint(nodeId)` |`void` |To active a breakpoint which has been
temporary disabled.
+|`enableBreakpoint(nodeId)` |`void` |To activate a breakpoint which has been
disabled.
|`enableDebugger` |`void` |To enable the debugger
|`getBreakpoints` |`Set<String>` |To get a set of all the nodes which has a
breakpoint added.
|`getDebuggerCounter` |`long` |Gets the total number of debugged messages.
@@ -50,6 +50,7 @@ NOTE: This requires to enabled JMX by including
`camel-management` JAR in the cl
|`setMessageHeaderOnBreakpoint(nodeId,headerName,value)` |`void` |To
update/add the message header on the suspended Exchange at the node.
|`stepBreakpoint(nodeId)` |`void` |To start single step mode from a suspended
breakpoint at the given node. Then invoke `step` to step to next node in the
route.
|`step` |`void` |To step to next node when in single step mode.
+|`validateConditionalBreakpoint` |`String` |Used for validating if a given
predicate is valid or not. Returns null if valid, otherwise a string with the
error message.
|=======================================================================
== Enabling