mirror of
https://github.com/espressif/esp-mqtt.git
synced 2025-08-02 20:25:10 +02:00
Merge branch 'module_logging_tag_lower_case' into 'master'
Make the mqtt submodule logging tags lower case See merge request espressif/esp-mqtt!122
This commit is contained in:
@@ -5,7 +5,7 @@
|
|||||||
#include "esp_log.h"
|
#include "esp_log.h"
|
||||||
|
|
||||||
#ifndef CONFIG_MQTT_CUSTOM_OUTBOX
|
#ifndef CONFIG_MQTT_CUSTOM_OUTBOX
|
||||||
static const char *TAG = "OUTBOX";
|
static const char *TAG = "outbox";
|
||||||
|
|
||||||
typedef struct outbox_item {
|
typedef struct outbox_item {
|
||||||
char *buffer;
|
char *buffer;
|
||||||
|
@@ -8,7 +8,7 @@
|
|||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
|
||||||
static const char *TAG = "PLATFORM";
|
static const char *TAG = "platform";
|
||||||
|
|
||||||
#define MAX_ID_STRING (32)
|
#define MAX_ID_STRING (32)
|
||||||
|
|
||||||
|
@@ -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");
|
_Static_assert(MQTT_EVENT_ANY == ESP_EVENT_ANY_ID, "mqtt-client event enum does not match the global EVENT_ANY_ID");
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static const char *TAG = "MQTT_CLIENT";
|
static const char *TAG = "mqtt_client";
|
||||||
|
|
||||||
#ifdef MQTT_SUPPORTED_FEATURE_EVENT_LOOP
|
#ifdef MQTT_SUPPORTED_FEATURE_EVENT_LOOP
|
||||||
/**
|
/**
|
||||||
|
Reference in New Issue
Block a user