5 #include <openvr_driver.h> 11 static bool InitDriverLog(vr::IVRDriverLog *pDriverLog);
12 static void CleanupDriverLog();
13 static void DriverLogVarArgs(
const char *pMsgFormat, va_list args, std::string logLevel);
14 static void Info(
const char *pchFormat, ...);
15 static void Debug(
const char *pchFormat, ...);
16 static void Warn(
const char *pchFormat, ...);
17 static void Error(
const char *pchFormat, ...);
Provides printf-style line logging via the vr::IVRDriverLog interface provided by SteamVR during init...
Definition: config.cpp:18
static void Warn(const char *pchFormat,...)
Logs a printf-style warn line logging.
Definition: logger.cpp:59
static void Info(const char *pchFormat,...)
Logs a printf-style info line logging.
Definition: logger.cpp:50
static void Debug(const char *pchFormat,...)
Logs a printf-style debug line logging.
Definition: logger.cpp:77
static void Error(const char *pchFormat,...)
Logs a printf-style error line logging.
Definition: logger.cpp:68