Difference between revisions of "SET DEBUG"
From Recital Documentation Wiki
Yvonnemilne (Talk | contribs) |
Yvonnemilne (Talk | contribs) |
||
(5 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
==Purpose== | ==Purpose== | ||
− | + | Enable or disable the logging of [[DEBUG()]] messages | |
Line 15: | Line 8: | ||
==See Also== | ==See Also== | ||
− | [[ | + | [[ASSERT]], [[DB_DEBUGDIR]], [[DEBUG]], [[DEBUG()]], [[SET ASSERTS]] |
==Description== | ==Description== | ||
− | If SET DEBUG | + | If SET DEBUG is ON, debugging information messages specified by the [[DEBUG()]] function are written to a text file in the current [[DB_DEBUGDIR]] directory. The text file is named ''debug'' + process ID + ''.txt''. A copy of the latest debug file can also be found in the file ''debug.txt''. By default, DEBUG is OFF. |
==Example== | ==Example== | ||
− | < | + | <code lang="recital"> |
set debug on | set debug on | ||
− | + | ||
− | + | // app1.prg | |
+ | debug("program started by " + user()) | ||
+ | //... | ||
+ | debug("program end") | ||
+ | </code> | ||
==Products== | ==Products== | ||
− | Recital | + | Recital, Recital Server |
[[Category:Documentation]] | [[Category:Documentation]] | ||
[[Category:Commands]] | [[Category:Commands]] | ||
[[Category:Set_Commands|DEBUG]] | [[Category:Set_Commands|DEBUG]] | ||
+ | [[Category:Error Handling and Debugging]] | ||
+ | [[Category:Error Handling and Debugging Set Commands]] |
Latest revision as of 11:03, 27 July 2010
Purpose
Enable or disable the logging of DEBUG() messages
Syntax
SET DEBUG ON | OFF | (<expL>)
See Also
ASSERT, DB_DEBUGDIR, DEBUG, DEBUG(), SET ASSERTS
Description
If SET DEBUG is ON, debugging information messages specified by the DEBUG() function are written to a text file in the current DB_DEBUGDIR directory. The text file is named debug + process ID + .txt. A copy of the latest debug file can also be found in the file debug.txt. By default, DEBUG is OFF.
Example
set debug on // app1.prg debug("program started by " + user()) //... debug("program end")
Products
Recital, Recital Server