MCPcopy Create free account
hub / github.com/OpenNI/OpenNI / xnLogGetMaskMinSeverity

Function xnLogGetMaskMinSeverity

Source/OpenNI/XnLog.cpp:869–881  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

867}
868
869XN_C_API XnLogSeverity XN_C_DECL xnLogGetMaskMinSeverity(const XnChar* strMask)
870{
871 XnLogger* pLogger = xnLogGetLoggerForMask(strMask, FALSE);
872 if (pLogger == NULL)
873 {
874 LogData& logData = LogData::GetInstance();
875 return logData.defaultMinSeverity;
876 }
877 else
878 {
879 return pLogger->nMinSeverity;
880 }
881}
882
883XN_C_API XnLogger* XN_C_DECL xnLoggerOpen(const XnChar* strMask)
884{

Callers

nothing calls this directly

Calls 1

xnLogGetLoggerForMaskFunction · 0.85

Tested by

no test coverage detected