Lines Matching defs:msg

44 #define ldebug(msg...)  argument
45 #define linfo(msg...) argument
46 #define lnotice(msg...) argument
47 #define lwarning(msg...) argument
48 #define lcritical(msg...) argument
49 #define lpdebug(msg...) argument
50 #define lpinfo(msg...) argument
51 #define lpnotice(msg...) argument
52 #define lpwarning(msg...) argument
53 #define lpcritical(msg...) argument
54 #define mldebug(msg...) argument
55 #define mlinfo(msg...) argument
56 #define mlnotice(msg...) argument
57 #define mlwarning(msg...) argument
58 #define mlcritical(msg...) argument
59 #define gldebug(msg...) argument
60 #define glinfo(msg...) argument
61 #define glnotice(msg...) argument
62 #define glwarning(msg...) argument
63 #define glcritical(msg...) argument
65 #define ldebug(msg...) core_log_debug(&self->_log, __FILE__, __LINE__, msg) argument
66 #define linfo(msg...) core_log_info(&self->_log, __FILE__, __LINE__, msg) argument
67 #define lnotice(msg...) core_log_notice(&self->_log, __FILE__, __LINE__, msg) argument
68 #define lwarning(msg...) core_log_warning(&self->_log, __FILE__, __LINE__, msg) argument
69 #define lcritical(msg...) core_log_critical(&self->_log, __FILE__, __LINE__, msg) argument
70 #define lpdebug(msg...) core_log_debug(self->_log, __FILE__, __LINE__, msg) argument
71 #define lpinfo(msg...) core_log_info(self->_log, __FILE__, __LINE__, msg) argument
72 #define lpnotice(msg...) core_log_notice(self->_log, __FILE__, __LINE__, msg) argument
73 #define lpwarning(msg...) core_log_warning(self->_log, __FILE__, __LINE__, msg) argument
74 #define lpcritical(msg...) core_log_critical(self->_log, __FILE__, __LINE__, msg) argument
75 #define mldebug(msg...) core_log_debug(&_log, __FILE__, __LINE__, msg) argument
76 #define mlinfo(msg...) core_log_info(&_log, __FILE__, __LINE__, msg) argument
77 #define mlnotice(msg...) core_log_notice(&_log, __FILE__, __LINE__, msg) argument
78 #define mlwarning(msg...) core_log_warning(&_log, __FILE__, __LINE__, msg) argument
79 #define mlcritical(msg...) core_log_critical(&_log, __FILE__, __LINE__, msg) argument
80 #define gldebug(msg...) core_log_debug(0, __FILE__, __LINE__, msg) argument
81 #define glinfo(msg...) core_log_info(0, __FILE__, __LINE__, msg) argument
82 #define glnotice(msg...) core_log_notice(0, __FILE__, __LINE__, msg) argument
83 #define glwarning(msg...) core_log_warning(0, __FILE__, __LINE__, msg) argument
84 #define glcritical(msg...) core_log_critical(0, __FILE__, __LINE__, msg) argument
87 #define lfatal(msg...) core_log_fatal(&self->_log, __FILE__, __LINE__, msg) argument
88 #define lpfatal(msg...) core_log_fatal(self->_log, __FILE__, __LINE__, msg) argument
89 #define mlfatal(msg...) core_log_fatal(&_log, __FILE__, __LINE__, msg) argument
90 #define glfatal(msg...) core_log_fatal(0, __FILE__, __LINE__, msg) argument