void LogMessageById(LogMessageId messageId, const char* fmt, ...);
LogMessageById calls the logging function with specific message type, with no type filtering. This can be used to identify/create log messages by type.
Parameters |
Description |
LogMessageId messageId |
The type of message being logged, described by LogMessageId. |
const char* fmt |
A printf-style format string for the log message. |