![]() |
Blamite Game Engine - Strings
00307.01.26.21.0804.blamite
A library containing general purpose utilities and classes for use in multiple projects.
|
Go to the source code of this file.
Classes | |
class | BlamBasicLogMessage |
Class represneting a basic log message. More... | |
class | BlamLogReceiver |
Interface used to receive log messages. More... | |
class | BlamBasicLogger |
Class representing a basic logger. More... | |
Namespaces | |
BlamStrings | |
Namespace for Blamite's shared C++ library. | |
BlamStrings::Interface | |
BlamStrings::Interface::Logger | |
Namespace containing functions related to the logger. | |
Macros | |
#define | STRINGS_API __declspec(dllimport) |
Enumerations | |
enum | BlamLogLevel { BlamLogLevel::None, BlamLogLevel::Warning, BlamLogLevel::Error, BlamLogLevel::Severe, BlamLogLevel::Input, BlamLogLevel::AiError } |
Enumerator to specify log event severity. More... | |
Functions | |
STRINGS_API std::string | BlamStrings::Interface::Logger::GenerateLogLevelPrefix (BlamLogLevel log_level) |
Generates a prefix for a given log level, such as [INFO] or [WARN] . More... | |
#define STRINGS_API __declspec(dllimport) |
|
strong |
Enumerator to specify log event severity.
Enumerator | |
---|---|
None | Indicates no severity, and is displayed with no formatting. |
Warning | Indicates a warning message. Not something critical, but something that could cause unexpected behavior. |
Error | Indicates an error that could cause engine instability. |
Severe | Indicates a severe error that the engine cannot recover from. |
Input | Indicates that the user has executed a command from console.
|
AiError | Placeholder for the future, indicates an error with AI.
|