Searched refs:DfxLog (Results 1 – 3 of 3) sorted by relevance
/base/hiviewdfx/faultloggerd/common/dfxlog/ |
D | dfx_log.h | 68 int DfxLog(const Level logLevel, const unsigned int domain, const char* tag, const char *fmt, ...); 70 #define DfxLogDebug(fmt, ...) DfxLog(DEBUG, LOG_DOMAIN, LOG_TAG, fmt, ##__VA_ARGS__) 71 #define DfxLogInfo(fmt, ...) DfxLog(INFO, LOG_DOMAIN, LOG_TAG, fmt, ##__VA_ARGS__) 72 #define DfxLogWarn(fmt, ...) DfxLog(WARN, LOG_DOMAIN, LOG_TAG, fmt, ##__VA_ARGS__) 73 #define DfxLogError(fmt, ...) DfxLog(ERROR, LOG_DOMAIN, LOG_TAG, fmt, ##__VA_ARGS__) 74 #define DfxLogFatal(fmt, ...) DfxLog(FATAL, LOG_DOMAIN, LOG_TAG, fmt, ##__VA_ARGS__) 76 #define LOGD(fmt, ...) DfxLog(DEBUG, LOG_DOMAIN, LOG_TAG, "[%s:%d]" fmt, (FILE_NAME), (__LINE__), #… 77 #define LOGI(fmt, ...) DfxLog(INFO, LOG_DOMAIN, LOG_TAG, "[%s:%d]" fmt, (FILE_NAME), (__LINE__), ##… 78 #define LOGW(fmt, ...) DfxLog(WARN, LOG_DOMAIN, LOG_TAG, "[%s:%d]" fmt, (FILE_NAME), (__LINE__), ##… 79 #define LOGE(fmt, ...) DfxLog(ERROR, LOG_DOMAIN, LOG_TAG, "[%s:%d]" fmt, (FILE_NAME), (__LINE__), #… [all …]
|
D | musl_log.h | 70 __attribute__ ((visibility("hidden"))) int DfxLog( in DfxLog() function 83 #define DfxLogDebug(...) DfxLog(LOG_DEBUG, LOG_DOMAIN, LOG_TAG, __VA_ARGS__) 84 #define DfxLogInfo(...) DfxLog(LOG_INFO, LOG_DOMAIN, LOG_TAG, __VA_ARGS__) 85 #define DfxLogWarn(...) DfxLog(LOG_WARN, LOG_DOMAIN, LOG_TAG, __VA_ARGS__) 86 #define DfxLogError(...) DfxLog(LOG_ERROR, LOG_DOMAIN, LOG_TAG, __VA_ARGS__) 87 #define DfxLogFatal(...) DfxLog(LOG_FATAL, LOG_DOMAIN, LOG_TAG, __VA_ARGS__)
|
D | dfx_log.cpp | 74 int DfxLog(const Level logLevel, const unsigned int domain, const char* tag, const char *fmt, ...) in DfxLog() function
|