Trace (XmlDoc/XmlNode subroutine): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (edits, tags and links)
mNo edit summary
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
{{Template:XmlDoc/XmlNode:Trace subtitle}}
{{Template:XmlDoc/XmlNode:Trace subtitle}}
<var>Trace</var> displays an <var>XmlDoc</var> subtree in a readable form, useful for debugging, for example.  <var>Trace</var> is identical to <var>[[Print (XmlDoc/XmlNode subroutine)|Print]]</var>, except the result is sent to the currently selected trace stream.  That stream can be the user's standard output, the <var class="product">Model 204</var> audit trail, an internal trace table, or a combination of these (as described for the User Language <var>[[Trace statement|Trace]]</var> statement).  Also, the default indentation for <var>Trace</var> is one space, while the default for the <var>Print</var> method is three.
<var>Trace</var> displays an <var>XmlDoc</var> subtree in a readable form, useful for debugging, for example.  <var>Trace</var> is identical to <var>[[Print (XmlDoc/XmlNode subroutine)|Print]]</var>, except the result is sent to the currently selected trace stream.  That stream can be the user's standard output, the <var class="product">Model 204</var> audit trail, an internal trace table, or a combination of these (as described for the <var class="product">User Language</var> <var>[[Trace statement|Trace]]</var> statement).  Also, the default indentation for <var>Trace</var> is one space, while the default for the <var>Print</var> method is three.


The default <var>Trace</var> statement stream is the terminal, so unless you reset the [[ULTRACE parameter|ULTRACE]] parameter to select another stream, <var>Trace</var> is the same as using <var>Print</var>.
The default <var>Trace</var> statement stream is the terminal, so unless you reset the [[ULTRACE parameter|ULTRACE]] parameter to select another stream, <var>Trace</var> is the same as using <var>Print</var>.
Line 6: Line 6:
==Syntax==
==Syntax==
{{Template:XmlDoc/XmlNode:Trace syntax}}
{{Template:XmlDoc/XmlNode:Trace syntax}}
==Usage Notes==
<ul><li><var>Trace</var> is available in <var class="product">[[Sirius Mods|"Sirius Mods"]]</var> Version 6.7 and later.
</ul>


==See also==
==See also==

Latest revision as of 20:33, 10 October 2012

Display selected subtree on Trace stream (XmlDoc and XmlNode classes)

Trace displays an XmlDoc subtree in a readable form, useful for debugging, for example. Trace is identical to Print, except the result is sent to the currently selected trace stream. That stream can be the user's standard output, the Model 204 audit trail, an internal trace table, or a combination of these (as described for the User Language Trace statement). Also, the default indentation for Trace is one space, while the default for the Print method is three.

The default Trace statement stream is the terminal, so unless you reset the ULTRACE parameter to select another stream, Trace is the same as using Print.

Syntax

nr:Trace[( [xpath], [options])] Throws XPathError

See also