Skip to content

Commit fb3184c

Browse files
AndriiFilippovdavid-cermak
authored andcommitted
Make the mqtt submodule logging tags lower case
1 parent 4874bab commit fb3184c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

lib/mqtt_outbox.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#include "esp_log.h"
66

77
#ifndef CONFIG_MQTT_CUSTOM_OUTBOX
8-
static const char *TAG = "OUTBOX";
8+
static const char *TAG = "outbox";
99

1010
typedef struct outbox_item {
1111
char *buffer;

lib/platform_esp32_idf.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#include <stdlib.h>
99
#include <stdint.h>
1010

11-
static const char *TAG = "PLATFORM";
11+
static const char *TAG = "platform";
1212

1313
#define MAX_ID_STRING (32)
1414

mqtt_client.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ _Static_assert(sizeof(uint64_t) == sizeof(outbox_tick_t), "mqtt-client tick type
3232
_Static_assert(MQTT_EVENT_ANY == ESP_EVENT_ANY_ID, "mqtt-client event enum does not match the global EVENT_ANY_ID");
3333
#endif
3434

35-
static const char *TAG = "MQTT_CLIENT";
35+
static const char *TAG = "mqtt_client";
3636

3737
#ifdef MQTT_SUPPORTED_FEATURE_EVENT_LOOP
3838
/**

0 commit comments

Comments
 (0)