ChaosDMX
Open-Source DMX-Interface
Loading...
Searching...
No Matches
logger.h
Go to the documentation of this file.
1
24
25
#pragma once
26
27
#include "esp_log.h"
28
29
#ifdef __cplusplus
30
extern
"C"
{
31
#endif
32
33
#ifndef LOG_TAG
34
#define LOG_TAG "CHAOS"
35
#endif
36
38
#define LOGE(...) ESP_LOGE(LOG_TAG, __VA_ARGS__)
40
#define LOGW(...) ESP_LOGW(LOG_TAG, __VA_ARGS__)
42
#define LOGI(...) ESP_LOGI(LOG_TAG, __VA_ARGS__)
44
#define LOGD(...) ESP_LOGD(LOG_TAG, __VA_ARGS__)
46
#define LOGV(...) ESP_LOGV(LOG_TAG, __VA_ARGS__)
47
48
#ifdef __cplusplus
49
}
50
#endif
components
logger
include
logger.h
Found an issue or bug?
Open an issue on GitHub