#include <stdint.h>
#include <stdarg.h>
#include <stddef.h>
Go to the source code of this file.
|
| #define | esp_earlylog_write esp_log_write |
| |
| #define | LOG_LOCAL_LEVEL ESP_LOG_VERBOSE |
| |
| #define | ESP_LOG_ENABLED(level) |
| |
| #define | ESP_LOG_LEVEL_LOCAL(level, tag, format, ...) |
| |
| #define | ESP_LOG_LEVEL(level, tag, format, ...) |
| |
| #define | ESP_LOGE(tag, format, ...) |
| |
| #define | ESP_LOGW(tag, format, ...) |
| |
| #define | ESP_LOGI(tag, format, ...) |
| |
| #define | ESP_LOGD(tag, format, ...) |
| |
| #define | ESP_LOGV(tag, format, ...) |
| |
| #define | ESP_EARLY_LOGE(tag, format, ...) |
| |
| #define | ESP_EARLY_LOGW(tag, format, ...) |
| |
| #define | ESP_EARLY_LOGI(tag, format, ...) |
| |
| #define | ESP_EARLY_LOGD(tag, format, ...) |
| |
| #define | ESP_EARLY_LOGV(tag, format, ...) |
| |
| #define | ESP_DRAM_LOGE(tag, format, ...) |
| |
| #define | ESP_DRAM_LOGW(tag, format, ...) |
| |
| #define | ESP_DRAM_LOGI(tag, format, ...) |
| |
| #define | ESP_DRAM_LOGD(tag, format, ...) |
| |
| #define | ESP_DRAM_LOGV(tag, format, ...) |
| |
◆ esp_earlylog_write
◆ LOG_LOCAL_LEVEL
◆ ESP_LOG_ENABLED
| #define ESP_LOG_ENABLED |
( |
| level | ) |
|
Value:
#define LOG_LOCAL_LEVEL
Definition esp_log.h:98
◆ ESP_LOG_LEVEL_LOCAL
| #define ESP_LOG_LEVEL_LOCAL |
( |
| level, |
|
|
| tag, |
|
|
| format, |
|
|
| ... ) |
Value: do { \
esp_log_write((level), (tag),
format, ##__VA_ARGS__); \
} \
} while (0)
◆ ESP_LOG_LEVEL
| #define ESP_LOG_LEVEL |
( |
| level, |
|
|
| tag, |
|
|
| format, |
|
|
| ... ) |
Value:
#define ESP_LOG_LEVEL_LOCAL(level, tag, format,...)
Definition esp_log.h:104
◆ ESP_LOGE
| #define ESP_LOGE |
( |
| tag, |
|
|
| format, |
|
|
| ... ) |
Value:
@ ESP_LOG_ERROR
Definition esp_log.h:45
◆ ESP_LOGW
| #define ESP_LOGW |
( |
| tag, |
|
|
| format, |
|
|
| ... ) |
Value:
@ ESP_LOG_WARN
Definition esp_log.h:46
◆ ESP_LOGI
| #define ESP_LOGI |
( |
| tag, |
|
|
| format, |
|
|
| ... ) |
Value:
@ ESP_LOG_INFO
Definition esp_log.h:47
◆ ESP_LOGD
| #define ESP_LOGD |
( |
| tag, |
|
|
| format, |
|
|
| ... ) |
Value:
@ ESP_LOG_DEBUG
Definition esp_log.h:48
◆ ESP_LOGV
| #define ESP_LOGV |
( |
| tag, |
|
|
| format, |
|
|
| ... ) |
Value:
@ ESP_LOG_VERBOSE
Definition esp_log.h:49
◆ ESP_EARLY_LOGE
| #define ESP_EARLY_LOGE |
( |
| tag, |
|
|
| format, |
|
|
| ... ) |
Value:
#define ESP_LOGE(tag, format,...)
Definition esp_log.h:114
◆ ESP_EARLY_LOGW
| #define ESP_EARLY_LOGW |
( |
| tag, |
|
|
| format, |
|
|
| ... ) |
Value:
#define ESP_LOGW(tag, format,...)
Definition esp_log.h:115
◆ ESP_EARLY_LOGI
| #define ESP_EARLY_LOGI |
( |
| tag, |
|
|
| format, |
|
|
| ... ) |
Value:
#define ESP_LOGI(tag, format,...)
Definition esp_log.h:116
◆ ESP_EARLY_LOGD
| #define ESP_EARLY_LOGD |
( |
| tag, |
|
|
| format, |
|
|
| ... ) |
Value:
#define ESP_LOGD(tag, format,...)
Definition esp_log.h:117
◆ ESP_EARLY_LOGV
| #define ESP_EARLY_LOGV |
( |
| tag, |
|
|
| format, |
|
|
| ... ) |
Value:
#define ESP_LOGV(tag, format,...)
Definition esp_log.h:118
◆ ESP_DRAM_LOGE
| #define ESP_DRAM_LOGE |
( |
| tag, |
|
|
| format, |
|
|
| ... ) |
◆ ESP_DRAM_LOGW
| #define ESP_DRAM_LOGW |
( |
| tag, |
|
|
| format, |
|
|
| ... ) |
◆ ESP_DRAM_LOGI
| #define ESP_DRAM_LOGI |
( |
| tag, |
|
|
| format, |
|
|
| ... ) |
◆ ESP_DRAM_LOGD
| #define ESP_DRAM_LOGD |
( |
| tag, |
|
|
| format, |
|
|
| ... ) |
◆ ESP_DRAM_LOGV
| #define ESP_DRAM_LOGV |
( |
| tag, |
|
|
| format, |
|
|
| ... ) |
◆ vprintf_like_t
| typedef int(* vprintf_like_t) (const char *, va_list) |
◆ esp_log_level_t
| Enumerator |
|---|
| ESP_LOG_NONE | No log output
|
| ESP_LOG_ERROR | Critical errors, software malfunction
|
| ESP_LOG_WARN | Recoverable warnings
|
| ESP_LOG_INFO | Informational messages
|
| ESP_LOG_DEBUG | Extra information, not needed for normal use
|
| ESP_LOG_VERBOSE | Bigger chunks of debug information
|
◆ esp_log_level_set()
◆ esp_log_level_get()
◆ esp_log_set_vprintf()
◆ esp_log_write()
| void esp_log_write |
( |
esp_log_level_t | level, |
|
|
const char * | tag, |
|
|
const char * | format, |
|
|
| ... ) |
◆ esp_log_writev()
| void esp_log_writev |
( |
esp_log_level_t | level, |
|
|
const char * | tag, |
|
|
const char * | format, |
|
|
va_list | args ) |
◆ esp_log_timestamp()
◆ esp_log_system_timestamp()
| char * esp_log_system_timestamp |
( |
void | | ) |
|