Replaced logging tags with lower case in tcp_transport component to unite all tags under common structure.

pull/9656/head
AndriiFilippov 2022-07-29 14:19:30 +02:00 zatwierdzone przez David Čermák
rodzic c7558690ca
commit 0013ad5bb9
4 zmienionych plików z 4 dodań i 4 usunięć

Wyświetl plik

@ -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

Wyświetl plik

@ -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) {

Wyświetl plik

@ -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,

Wyświetl plik

@ -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