Lines Matching refs:LOG
9 // The output will be correct when the log file is shared between multiple
12 // and so are NOT reentrant. Do not use LOG in a signal handler.
46 * Simplified macro to send a verbose log message using the current LOG_TAG.
52 #define LOGV(...) ((void)LOG(LOG_VERBOSE, LOG_TAG, __VA_ARGS__))
64 ? ((void)LOG(LOG_VERBOSE, LOG_TAG, __VA_ARGS__)) \
73 * Simplified macro to send a debug log message using the current LOG_TAG.
76 #define LOGD(...) ((void)LOG(LOG_DEBUG, LOG_TAG, __VA_ARGS__))
82 ? ((void)LOG(LOG_DEBUG, LOG_TAG, __VA_ARGS__)) \
87 * Simplified macro to send an info log message using the current LOG_TAG.
90 #define LOGI(...) ((void)LOG(LOG_INFO, LOG_TAG, __VA_ARGS__))
96 ? ((void)LOG(LOG_INFO, LOG_TAG, __VA_ARGS__)) \
101 * Simplified macro to send a warning log message using the current LOG_TAG.
104 #define LOGW(...) ((void)LOG(LOG_WARN, LOG_TAG, __VA_ARGS__))
110 ? ((void)LOG(LOG_WARN, LOG_TAG, __VA_ARGS__)) \
115 * Simplified macro to send an error log message using the current LOG_TAG.
118 #define LOGE(...) ((void)LOG(LOG_ERROR, LOG_TAG, __VA_ARGS__))
124 ? ((void)LOG(LOG_ERROR, LOG_TAG, __VA_ARGS__)) \
176 * Basic log message macro.
179 * LOG(LOG_WARN, NULL, "Failed with error %d", errno);
186 #ifndef LOG
187 #define LOG(priority, tag, ...) \
192 * Log macro that allows you to specify a number for the priority.