From fb3184cc142c06e9b43b87a332bc364d71014fca Mon Sep 17 00:00:00 2001 From: AndriiFilippov Date: Tue, 8 Feb 2022 15:22:48 +0100 Subject: [PATCH] Make the mqtt submodule logging tags lower case --- lib/mqtt_outbox.c | 2 +- lib/platform_esp32_idf.c | 2 +- mqtt_client.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/mqtt_outbox.c b/lib/mqtt_outbox.c index 1a782d1..5680e8a 100644 --- a/lib/mqtt_outbox.c +++ b/lib/mqtt_outbox.c @@ -5,7 +5,7 @@ #include "esp_log.h" #ifndef CONFIG_MQTT_CUSTOM_OUTBOX -static const char *TAG = "OUTBOX"; +static const char *TAG = "outbox"; typedef struct outbox_item { char *buffer; diff --git a/lib/platform_esp32_idf.c b/lib/platform_esp32_idf.c index cf88477..9a50473 100644 --- a/lib/platform_esp32_idf.c +++ b/lib/platform_esp32_idf.c @@ -8,7 +8,7 @@ #include #include -static const char *TAG = "PLATFORM"; +static const char *TAG = "platform"; #define MAX_ID_STRING (32) diff --git a/mqtt_client.c b/mqtt_client.c index 3b41791..f6de6af 100644 --- a/mqtt_client.c +++ b/mqtt_client.c @@ -32,7 +32,7 @@ _Static_assert(sizeof(uint64_t) == sizeof(outbox_tick_t), "mqtt-client tick type _Static_assert(MQTT_EVENT_ANY == ESP_EVENT_ANY_ID, "mqtt-client event enum does not match the global EVENT_ANY_ID"); #endif -static const char *TAG = "MQTT_CLIENT"; +static const char *TAG = "mqtt_client"; #ifdef MQTT_SUPPORTED_FEATURE_EVENT_LOOP /**