Merge branch 'module_logging_tag_lower_case' into 'master'

Replaced logging tags with lower case in tcp_transport component

See merge request espressif/esp-idf!19298
This commit is contained in:
Rocha Euripedes 2022-08-17 23:56:12 +08:00
commit 1231e1bce0
4 changed files with 4 additions and 4 deletions

View File

@ -15,7 +15,7 @@
#include "esp_transport_internal.h"
#include "esp_transport.h"
static const char *TAG = "TRANSPORT";
static const char *TAG = "transport";
/**
* This list will hold all transport available

View File

@ -6,7 +6,7 @@
#include "esp_transport_internal.h"
static const char *TAG = "TRANSPORT";
static const char *TAG = "transport";
struct timeval* esp_transport_utils_ms_to_timeval(int timeout_ms, struct timeval *tv)
{
if (timeout_ms == -1) {

View File

@ -20,7 +20,7 @@
transport_esp_tls_t *ssl = ssl_get_context_data(t); \
if (!ssl) { return; }
static const char *TAG = "TRANSPORT_BASE";
static const char *TAG = "transport_base";
typedef enum {
TRANS_SSL_INIT = 0,

View File

@ -17,7 +17,7 @@
#include "errno.h"
#include "esp_tls_crypto.h"
static const char *TAG = "TRANSPORT_WS";
static const char *TAG = "transport_ws";
#define WS_BUFFER_SIZE CONFIG_WS_BUFFER_SIZE
#define WS_FIN 0x80