#include <stdio.h>
#include <stdarg.h>
#include "rtflann/defines.h"
Go to the source code of this file.
#define LOG_METHOD |
( |
|
NAME, |
|
|
|
LEVEL |
|
) |
| |
Value:static int NAME(
const char* fmt, ...) \
{ \
va_list ap; \
va_start(ap, fmt); \
int ret = instance()._log(LEVEL, fmt, ap); \
va_end(ap); \
return ret; \
}
Definition at line 114 of file logger.h.