MCPcopy Create free account
hub / github.com/TorqueGameEngines/Torque3D / printf

Function printf

Engine/source/console/console.cpp:731–737  ·  view source on GitHub ↗

------------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

729
730//------------------------------------------------------------------------------
731void printf(const char* fmt,...)
732{
733 va_list argptr;
734 va_start(argptr, fmt);
735 _printf(ConsoleLogEntry::Normal, ConsoleLogEntry::General, fmt, argptr);
736 va_end(argptr);
737}
738
739void warnf(ConsoleLogEntry::Type type, const char* fmt,...)
740{

Callers 15

mountObjectMethod · 0.85
unmountObjectMethod · 0.85
packUpdateMethod · 0.85
unpackUpdateMethod · 0.85
attachObjectMethod · 0.85
onAttachObjectMethod · 0.85
detachObjectMethod · 0.85
onDetachObjectMethod · 0.85
advanceObjectMethod · 0.85
handleErrorMethod · 0.85
handleWarningMethod · 0.85
normalizeFunction · 0.85

Calls 1

_printfFunction · 0.85

Tested by 15

PrintTestPartResultFunction · 0.68
ColoredPrintfFunction · 0.68
PrintTestNameMethod · 0.68
OnTestIterationStartMethod · 0.68
OnTestCaseStartMethod · 0.68
OnTestStartMethod · 0.68
OnTestEndMethod · 0.68
OnTestCaseEndMethod · 0.68
PrintFailedTestsMethod · 0.68