IB Statements/log
From CometWiki
(Difference between revisions)
Line 3: | Line 3: | ||
'''Discussion:''' The LOG statement writes a specified string to the user’s startup details log. This is a convenient way to log when a particular program is started or stopped. It can also be very helpful for writing debug trace messages to yourself! :-) | '''Discussion:''' The LOG statement writes a specified string to the user’s startup details log. This is a convenient way to log when a particular program is started or stopped. It can also be very helpful for writing debug trace messages to yourself! :-) | ||
- | '''Syntax:''' | + | '''Syntax:''' LOG string-argument |
'''Example:''' LOG “Program XYZ is now running.” | '''Example:''' LOG “Program XYZ is now running.” | ||
+ | '''Example:''' DebugMsg$ = "After READ id$ = " + id$ & LOG DebugMsg$ | ||
. | . |
Revision as of 00:24, 5 January 2010
LOG statement
Discussion: The LOG statement writes a specified string to the user’s startup details log. This is a convenient way to log when a particular program is started or stopped. It can also be very helpful for writing debug trace messages to yourself! :-)
Syntax: LOG string-argument
Example: LOG “Program XYZ is now running.” Example: DebugMsg$ = "After READ id$ = " + id$ & LOG DebugMsg$
.
LOG “Program XYZ is complete.”
RUN “QMONITOR”
END