OpenTTD GameScript API  20240725-master-g44b748a766
Static Public Member Functions
GSLog Class Reference

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

Inheritance diagram for GSLog:

Static Public Member Functions

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

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.