Trace|TraceText|TraceXml
Send trace information to attached XXTraceConsole.
Trace(strCat, strDesc);
TraceText(strCat, strDesc, strData);
TraceXml(strCat, strDesc, strData);
Parameters
- strCat : [in] String, trace category (freeform, single line)
- strDesc : [in] String, trace description (freeform, single line)
- strData: [in] String, extended trace data (freeform text or XML text)
Return Values
none
Remarks
This trace is sent to all attached XXTraceConsoles where
- a
<trace>
identifier is specified in the Transaction Control Data (XML) by the client - the
<trace>
identifier matches the ID in the XXTraceConsole
Example
Trace("MyCat1", "Short Info"); TraceText("MyCat2", "My Trace Description", "My long text data"); TraceXml("MyCat3", "My Trace Description", "<test><data>My XML text</data></test>");