# Understanding the Trace

The trace has a number of simple text entries. The following tags are samples of the informational messages and help determine the flow:

```log
**** BEGIN TRANSACTION ****
2018-05-18 10:38:59.966::MAXPAY = 25
```

Tells you that a new transaction was started and the time it happened.

<pre class="language-log"><code class="lang-log"><strong>MAXPAY = 25
</strong></code></pre>

Tells you that the variable MAXPAY was set to 25.

```log
Deleted ERROR
```

Tells you that a variable named ERROR was deleted.

```log
2018-05-18 10:38:59.968::Entering rule Name Splitter in Initialization.xml
```

Tells you that the rule set entered a given rule.

```log
Chaining to Continue
```

Tells you which chain point was used from a given rule.

```log
Returning from NotFound
```

Tells you that the rule set returned from a nominated chain point.

```log
Completion status set to true
Completion scope set to PROCESS
```

Tells you that the Set Completed rule was called and the scope set.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.tomorrowx.com/cap/product-reference/trace-data/understanding-the-trace.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
