OPlog.h

Globals

  • i32 LogToHandle
  • ui32 OP_LOG_LEVEL
  • void() OPlogHandler

Functions

  • void OPlogSetOutput ( i32 handle )
  • void OPlg ( const char* message )
Prints out to the console, accepts variable arguments like sprintf
  • void OPlog ( const char* message )
Prints out to the console, accepts variable arguments like sprintf,
does not write a new line at the end of the message
  • void OPvlog ( ui32 level, const char* channel, const char* message, va_list args )
  • void OPlogChannel ( i32 level, const char* channel, const char* message )
  • void OPlogDebug ( const char* message )
Level 10
  • void OPlogInfo ( const char* message )
Level 30
  • void OPlogWarn ( const char* message )
Level 20
  • void OPlogErr ( const char* message )
Level 0