SPSP
Simple publish-subscribe protocol. Connects low power IoT clients to MQTT.
All Classes Files Functions Variables Typedefs Enumerations
espidf/spsp/logger.hpp
Go to the documentation of this file.
1 
10 #include "esp_log.h"
11 
12 #pragma once
13 
14 #define SPSP_LOGE(fmt, ...) ESP_LOGE(SPSP_LOG_TAG, fmt, __VA_ARGS__)
15 #define SPSP_LOGW(fmt, ...) ESP_LOGW(SPSP_LOG_TAG, fmt, __VA_ARGS__)
16 #define SPSP_LOGI(fmt, ...) ESP_LOGI(SPSP_LOG_TAG, fmt, __VA_ARGS__)
17 #define SPSP_LOGD(fmt, ...) ESP_LOGD(SPSP_LOG_TAG, fmt, __VA_ARGS__)