![]() |
Blamite Game Engine - Strings
00314.05.25.21.0023.blamite
A library containing general purpose utilities and classes for use in multiple projects.
|
Namespace containing functions for Tool's logger. More...
Namespaces | |
API | |
External API functions related to Tool's logger. | |
Functions | |
STRINGS_INTERNAL void | PrepareLogger () |
Prepares the Tool logger. More... | |
STRINGS_INTERNAL void | LogEvent (BlamBasicLogMessage message) |
Logs an event to Tool's log. More... | |
STRINGS_INTERNAL void | LogEvent (std::string message) |
Logs an event to Tool's log. More... | |
STRINGS_INTERNAL void | LogEvent (std::string message, BlamLogLevel log_level) |
Logs an event to Tool's log. More... | |
STRINGS_INTERNAL void | LogEvent (std::string message, TerminalColor color) |
Logs an event to Tool's log. More... | |
STRINGS_INTERNAL void | LogEvent (std::string message, std::string color_escape_prefix) |
Logs an event to Tool's log. More... | |
Namespace containing functions for Tool's logger.
void BlamTool::Logger::LogEvent | ( | BlamBasicLogMessage | message | ) |
Logs an event to Tool's log.
message | - The message to log to the console. |
void BlamTool::Logger::LogEvent | ( | std::string | message | ) |
Logs an event to Tool's log.
message | - The message to log to the console. |
void BlamTool::Logger::LogEvent | ( | std::string | message, |
BlamLogLevel | log_level | ||
) |
Logs an event to Tool's log.
message | - The message to log to the console. |
log_level | - The log level of the message. |
void BlamTool::Logger::LogEvent | ( | std::string | message, |
std::string | color_escape_prefix | ||
) |
Logs an event to Tool's log.
message | - The message to log to the console. |
color_escape_prefix | - The string used to escape color codes, allows for printing multicolored messages to stdout. |
void BlamTool::Logger::LogEvent | ( | std::string | message, |
TerminalColor | color | ||
) |
Logs an event to Tool's log.
message | - The message to log to the console. |
color | - The color to use when printing the message to the standard output. |
void BlamTool::Logger::PrepareLogger | ( | ) |
Prepares the Tool logger.