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

Function xnLogWriteEntry

Source/OpenNI/XnLog.cpp:196–205  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

194}
195
196static void xnLogWriteEntry(XnLogEntry* pEntry)
197{
198 LogData& logData = LogData::GetInstance();
199 XnAutoCSLocker locker(logData.hLock);
200 for (XnLogWritersList::ConstIterator it = logData.writers.Begin(); it != logData.writers.End(); ++it)
201 {
202 const XnLogWriter* pWriter = *it;
203 pWriter->WriteEntry(pEntry, pWriter->pCookie);
204 }
205}
206
207static void xnLogWriteImplV(const XnChar* csLogMask, XnLogSeverity nSeverity, const XnChar* csFile, XnUInt32 nLine, const XnChar* csFormat, va_list args)
208{

Callers 2

xnLogWriteImplVFunction · 0.85
xnLogFilterChangedFunction · 0.85

Calls 3

BeginMethod · 0.45
EndMethod · 0.45
WriteEntryMethod · 0.45

Tested by

no test coverage detected