OpenTTD GameScript API 20260206-master-g4d4e37dbf1
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()

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()

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()

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.