| 1023 | } |
| 1024 | |
| 1025 | XN_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 | |
| 1037 | XN_C_API void xnLogWriteNoEntry(const XnChar* csLogMask, XnLogSeverity nSeverity, const XnChar* csFormat, ...) |
| 1038 | { |
nothing calls this directly
no test coverage detected