These functions allow you to write log messages out into the script log.
Log
import function Log(text : string)
Description:- Writes a line starting with [Script] out to the scriptlog.
- Parameters:
- text : string
- Path:
- /core/misc.ws
LogChannel
import function LogChannel(channel : name, text : string)
Description:- Writes a line starting with [channel] out to the script log.
- Parameters:
- channel : name
- text : string
- Path:
- /core/misc.ws
Secondary Logging Functions
There are several additional functions that simply call the two primary logging functions, such as LogAssert
. These will be sorted into this article after documentation is up.