22 typedef void(*
RawLogFunc)(
int level,
const char* message);
27 inline void logError(
const std::string& message);
28 inline void logWarning(
const std::string& message);
29 inline void logInfo(
const std::string& message);
30 inline void logDebug(
const std::string& message);
39 #include "CDPLogHelper.inl"
void logWarning(const std::string &message)
Log warning message.
Definition: CDPLogHelper.inl:45
CDPLogHelper(RawLogFunc rawLogFunc)
Create a helper by providing the rawLogFunc (as provided in the CDP_FrameworkServices) ...
Definition: CDPLogHelper.inl:26
void logInfo(const std::string &message)
Log info message.
Definition: CDPLogHelper.inl:56
void logError(const std::string &message)
Log error message.
Definition: CDPLogHelper.inl:34
void(* RawLogFunc)(int level, const char *message)
Definition: CDPLogHelper.h:22
Definition: CDPLogHelper.h:19
void logDebug(const std::string &message)
Log debug message.
Definition: CDPLogHelper.inl:67