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
30extern "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