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

Function xnLoggerWriteNoEntry

Source/OpenNI/XnLog.cpp:902–911  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

900}
901
902XN_C_API void XN_C_DECL xnLoggerWriteNoEntry(XnLogger* pLogger, XnLogSeverity nSeverity, const XnChar* csFormat, ...)
903{
904 if (!xnLoggerIsEnabled(pLogger, nSeverity))
905 return;
906
907 va_list args;
908 va_start(args, csFormat);
909 xnLogWriteNoEntryImplV(csFormat, args);
910 va_end(args);
911}
912
913XN_C_API void XN_C_DECL xnLoggerWriteBinaryData(XnLogger* pLogger, XnLogSeverity nSeverity, const XnChar* csFile, XnUInt32 nLine, XnUChar* pBinData, XnUInt32 nDataSize, const XnChar* csFormat, ...)
914{

Callers

nothing calls this directly

Calls 2

xnLoggerIsEnabledFunction · 0.85
xnLogWriteNoEntryImplVFunction · 0.85

Tested by

no test coverage detected