Name
DebugOutput -- enable/disable debug output
Synopsis
DebugOutput(enable)
Function
This function enables or disables debug output to the default debug device. If debug output is enabled, Hollywood will print information about any function it calls so you can easily track down problems.

This call can be disabled by specifying the ‘-nodebug’ console argument when running a script or applet. In that case, calling DebugOutput() will do nothing at all. See Console arguments for details.

Inputs
enable
enable flag; True to enable debug output, False to disable it
Example
DebugOutput(TRUE)
The above code enables debug output.

Show TOC