Go to the source code of this file.
◆ logdebug
#define logdebug |
( |
|
fmt, |
|
|
|
... |
|
) |
| |
Value: do{ \
nclog(
"%s:%d:" fmt NL, __func__, __LINE__, ##__VA_ARGS__); } \
} while(0);
Definition at line 52 of file logging.h.
52 { \
54 nclog(
"%s:%d:" fmt NL, __func__, __LINE__, ##__VA_ARGS__); } \
55 } while(0);
◆ logerror
#define logerror |
( |
|
fmt, |
|
|
|
... |
|
) |
| |
Value: do{ \
nclog(
"%s:%d:" fmt NL, __func__, __LINE__, ##__VA_ARGS__); } \
} while(0);
Definition at line 32 of file logging.h.
32 { \
34 nclog(
"%s:%d:" fmt NL, __func__, __LINE__, ##__VA_ARGS__); } \
35 } while(0);
◆ logfatal
#define logfatal |
( |
|
fmt, |
|
|
|
... |
|
) |
| |
Value: do{ \
nclog(
"%s:%d:" fmt NL, __func__, __LINE__, ##__VA_ARGS__); } \
} while(0);
Definition at line 27 of file logging.h.
27 { \
29 nclog(
"%s:%d:" fmt NL, __func__, __LINE__, ##__VA_ARGS__); } \
30 } while(0);
◆ loginfo
#define loginfo |
( |
|
fmt, |
|
|
|
... |
|
) |
| |
Value: do{ \
nclog(
"%s:%d:" fmt NL, __func__, __LINE__, ##__VA_ARGS__); } \
} while(0);
Definition at line 42 of file logging.h.
42 { \
44 nclog(
"%s:%d:" fmt NL, __func__, __LINE__, ##__VA_ARGS__); } \
45 } while(0);
◆ logpanic
#define logpanic |
( |
|
fmt, |
|
|
|
... |
|
) |
| |
Value: do{ \
nclog(
"%s:%d:" fmt NL, __func__, __LINE__, ##__VA_ARGS__); } \
} while(0);
Definition at line 22 of file logging.h.
22 { \
24 nclog(
"%s:%d:" fmt NL, __func__, __LINE__, ##__VA_ARGS__); } \
25 } while(0);
◆ logtrace
#define logtrace |
( |
|
fmt, |
|
|
|
... |
|
) |
| |
Value: do{ \
nclog(
"%s:%d:" fmt NL, __func__, __LINE__, ##__VA_ARGS__); } \
} while(0);
Definition at line 57 of file logging.h.
57 { \
59 nclog(
"%s:%d:" fmt NL, __func__, __LINE__, ##__VA_ARGS__); } \
60 } while(0);
◆ logverbose
#define logverbose |
( |
|
fmt, |
|
|
|
... |
|
) |
| |
Value: do{ \
nclog(
"%s:%d:" fmt NL, __func__, __LINE__, ##__VA_ARGS__); } \
} while(0);
Definition at line 47 of file logging.h.
47 { \
49 nclog(
"%s:%d:" fmt NL, __func__, __LINE__, ##__VA_ARGS__); } \
50 } while(0);
◆ logwarn
#define logwarn |
( |
|
fmt, |
|
|
|
... |
|
) |
| |
Value: do{ \
nclog(
"%s:%d:" fmt NL, __func__, __LINE__, ##__VA_ARGS__); } \
} while(0);
Definition at line 37 of file logging.h.
37 { \
39 nclog(
"%s:%d:" fmt NL, __func__, __LINE__, ##__VA_ARGS__); } \
40 } while(0);
◆ loglevel