world.TraceOut
Outputs the supplied message to the world Trace
Prototype
void TraceOut(BSTR Message);
Description
If tracing is enabled for this world, the supplied string will be output to the trace destination. Normally this would be by world.Note, however if you are using a plugin with OnPluginTrace inside it, then it will be sent to there instead.
eg.
TraceOut ("debug point 3")
VBscript example
TraceOut "debug point 3"
Jscript example
TraceOut ("debug point 3")
Lua example
TraceOut ("debug point 3")
Lua notes
You can supply multiple arguments, which are concatenated together.
Return value
Nothing.
Related topic
See also
| Function | Description |
|---|---|
| Trace | Trace mode property |