virtual void LogMessageVarg(LogMessageId messageType, const char* pfmt, 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 messageType |
The type of message being logged, described by LogMessageId. |
const char* pfmt |
A printf-style format string for the log message. |
va_list argList |
A variable argument list passed to the function, as described by pfmt. |