UTIL LogPrintf: Difference between revisions

From Valve Developer Community
Jump to navigation Jump to search
(Created page with "{{lang|UTIL LogPrintf|title=<code>UTIL_LogPrintf</code>}} {{ent|UTIL_LogPrintf}} is a UTIL function that prints a logged message to console. {{todo|Add examples.}} ==Func...")
 
Line 9: Line 9:
// Preceded by LOG: ( timestamp ) < message >
// Preceded by LOG: ( timestamp ) < message >
//=========================================================
//=========================================================
void UTIL_LogPrintf( const char *fmt, ... )
void UTIL_LogPrintf( const char *fmt, ... );
</source>
</source>


[[Category:Programming]]
[[Category:Programming]]
[[Category:UTIL]]
[[Category:UTIL]]

Revision as of 08:37, 6 January 2022

English (en)Translate (Translate)

UTIL_LogPrintf is a UTIL function that prints a logged message to console.

Todo: Add examples.

Function Declaration

//=========================================================
// UTIL_LogPrintf - Prints a logged message to console.
// Preceded by LOG: ( timestamp ) < message >
//=========================================================
void UTIL_LogPrintf( const char *fmt, ... );