Skip to content

Log window

tomdam edited this page Jun 17, 2020 · 1 revision

Log window is a feature of SPCoder that collects and shows all log messages from application. It is used by SPCoder to log important events such as errors, but also can be used by custom scripts using SPCoder logger object. By default the window is located at the right side of the main screen.

Example usage

logger.LogInfo("This is custom info message");
logger.LogWarning("This is custom warning message");
logger.LogError("This is custom error message");

Log 1

SPCoder writes important events to the log, and in next example you can see the compilation error with the location in text (line, char). You can also notice that code editor marked the problematic part with red marker.

Log 2