Difference between revisions of "SET DEBUG"
From Recital Documentation Wiki
Helengeorge (Talk | contribs) (→Class) |
Yvonnemilne (Talk | contribs) |
||
| (2 intermediate revisions by 2 users not shown) | |||
| Line 1: | Line 1: | ||
| − | |||
| − | |||
==Purpose== | ==Purpose== | ||
| − | + | Enable or disable the logging of [[DEBUG()]] messages | |
| Line 10: | 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. |
| Line 20: | Line 18: | ||
<code lang="recital"> | <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]] | ||
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