|
Get SteelArrow!
|
|
|
|
<SADEBUG>
|
|
|
|
|
|
|
|
Return to Tag List |
|
The DEBUG tag is used to toggle the use of debugging. Any queries that are wrapped
with this tag will be listed at the end of the page data with some statisitcal information.
The tag also supports IP based filtering to limit the display to only those IP's that
match the IP mask.
|
|
Attributes:
IP | IP address mask for debug output |
DUMP | "yes" or "no"; answers the question: dump all variables? |
|
|
|
The following is an example of DEBUG;
|
|
<!--- Only IPs matching the below mask will see the --->
<!--- generated debug data. The IP mask will match; --->
<!--- 10.0.1.xxx or 10.0.1yy.xxx --->
<SADEBUG IP="10.0.1">
: <!--- Page code --->
</SADEBUG>
<!--- All clients will see the generated debug data --->
<!--- and upon encountering this tag, all variables --->
<!--- will be displayed --->
<SADEBUG DUMP="yes">
: <!--- Page code --->
</SADEBUG>
<!--- All clients will see the generated debug data --->
<SADEBUG>
: <!--- Page code --->
</SADEBUG>
|
|
|
|