|
hce-node application
1.4.3
HCE Hierarchical Cluster Engine node application
|
#include "cf_log.h"

Go to the source code of this file.
Macros | |
| #define | cf_error(__fmt, __args...) if (CF_ERROR <= G_LOG_LEVEL) {(*G_LOG_CB)(CF_ERROR, __fmt, ## __args);} |
| #define | cf_warn(__fmt, __args...) if (CF_WARN <= G_LOG_LEVEL) {(*G_LOG_CB)(CF_WARN, __fmt, ## __args);} |
| #define | cf_info(__fmt, __args...) if (CF_INFO <= G_LOG_LEVEL) {(*G_LOG_CB)(CF_INFO, __fmt, ## __args);} |
| #define | cf_debug(__fmt, __args...) if (CF_DEBUG <= G_LOG_LEVEL) {(*G_LOG_CB)(CF_DEBUG, __fmt, ## __args);} |
| #define cf_debug | ( | __fmt, | |
| __args... | |||
| ) | if (CF_DEBUG <= G_LOG_LEVEL) {(*G_LOG_CB)(CF_DEBUG, __fmt, ## __args);} |
Definition at line 26 of file cf_log_internal.h.
| #define cf_error | ( | __fmt, | |
| __args... | |||
| ) | if (CF_ERROR <= G_LOG_LEVEL) {(*G_LOG_CB)(CF_ERROR, __fmt, ## __args);} |
Definition at line 17 of file cf_log_internal.h.
| #define cf_info | ( | __fmt, | |
| __args... | |||
| ) | if (CF_INFO <= G_LOG_LEVEL) {(*G_LOG_CB)(CF_INFO, __fmt, ## __args);} |
Definition at line 23 of file cf_log_internal.h.
| #define cf_warn | ( | __fmt, | |
| __args... | |||
| ) | if (CF_WARN <= G_LOG_LEVEL) {(*G_LOG_CB)(CF_WARN, __fmt, ## __args);} |
Definition at line 20 of file cf_log_internal.h.