Class that handles all log related functions.
More...
#include <script_log.hpp>
|
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.
|
|
Class that handles all log related functions.
◆ Error()
static void GSLog::Error |
( |
string |
message | ) |
|
|
static |
Print an Error message to the logs.
- Parameters
-
message | The 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
-
message | The 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
-
message | The 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.