virtual void LogMessageVarg(LogMessageId messageId, const char* fmt, va_list argList);
LogMessageVarg is a virtual function that receives all log messages. Developers can override this function in order to do custom logging.
Parameters |
Description |
LogMessageId messageId |
The type of message id being logged. |
const char* fmt |
A printf-style format string for the log message. |
va_list argList |
A variable argument list passed to one of the functions, as described by fmt. |