There was an error while loading. Please reload this page.
Writes formatted output to stdout, without breaking console input / output like regular printf.
The formatting is as follows: [file.cpp(1337)] => My formatted message.
[file.cpp(1337)] => My formatted message
void PrintMessage( const char* File, const int& Line, const char* fmt, ... );
The file in which this error occurred. Plugins should use the __FILE__ macro.
__FILE__
The line at which this error occurred. Plugins should use the __LINE__ macro.
__LINE__
A format string to be printed - the formatting is same as in printf
Other arguments, the types to pass may change depending on the format string - same as in printf