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

Function xnLogWrite

Source/OpenNI/XnLog.cpp:1025–1035  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1023}
1024
1025XN_C_API void xnLogWrite(const XnChar* csLogMask, XnLogSeverity nSeverity, const XnChar* csFile, XnUInt32 nLine, const XnChar* csFormat, ...)
1026{
1027 if (!xnLogIsEnabled(csLogMask, nSeverity))
1028 return;
1029
1030 // write message
1031 va_list args;
1032 va_start(args, csFormat);
1033 xnLogWriteImplV(csLogMask, nSeverity, csFile, nLine, csFormat, args);
1034 va_end(args);
1035}
1036
1037XN_C_API void xnLogWriteNoEntry(const XnChar* csLogMask, XnLogSeverity nSeverity, const XnChar* csFormat, ...)
1038{

Callers

nothing calls this directly

Calls 2

xnLogIsEnabledFunction · 0.85
xnLogWriteImplVFunction · 0.85

Tested by

no test coverage detected