OpenTTD GameScript API 20241220-master-g59680867c3
Static Public Member Functions
GSLog Class Reference

Class that handles all log related functions. More...

#include <script_log.hpp>

Inheritance diagram for GSLog:

Static Public Member Functions

static void Info (string message)
 Print an Info message to the logs.
 
static void Warning (string message)
 Print a Warning message to the logs.
 
static void Error (string message)
 Print an Error message to the logs.
 

Detailed Description

Class that handles all log related functions.

Member Function Documentation

◆ Error()

static void GSLog::Error ( string  message)
static

Print an Error message to the logs.

Parameters
messageThe message to log.
Note
Special characters such as U+0000-U+0019 and U+E000-U+E1FF are not supported and removed or replaced by a question mark. This includes newlines and tabs.

◆ Info()

static void GSLog::Info ( string  message)
static

Print an Info message to the logs.

Parameters
messageThe message to log.
Note
Special characters such as U+0000-U+0019 and U+E000-U+E1FF are not supported and removed or replaced by a question mark. This includes newlines and tabs.

◆ Warning()

static void GSLog::Warning ( string  message)
static

Print a Warning message to the logs.

Parameters
messageThe message to log.
Note
Special characters such as U+0000-U+0019 and U+E000-U+E1FF are not supported and removed or replaced by a question mark. This includes newlines and tabs.