IB Statements/log
From CometWiki
< IB Statements(Difference between revisions)
(New page: '''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 start...) |
|||
(3 intermediate revisions not shown) | |||
Line 1: | Line 1: | ||
'''LOG statement''' | '''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. | + | '''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- | + | '''Syntax:''' LOG string-argument |
'''Example:''' LOG “Program XYZ is now running.” | '''Example:''' LOG “Program XYZ is now running.” | ||
Line 14: | Line 14: | ||
END | END | ||
+ | |||
+ | - OR - | ||
+ | |||
+ | '''Example:''' DebugMsg$ = "After READ id$ = " + id$ & LOG DebugMsg$ |
Latest revision as of 00:52, 6 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.”
.
LOG “Program XYZ is complete.”
RUN “QMONITOR”
END
- OR -
Example: DebugMsg$ = "After READ id$ = " + id$ & LOG DebugMsg$