From 01f436bbcb1a2d99d92ae00304c621f4dd6153ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20Villac=C3=ADs=20Lasso?= Date: Mon, 2 Aug 2021 18:57:38 -0500 Subject: [PATCH] Display actual core assignment for asyncTcpSock task For ease of debugging. --- src/AsyncTCP.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/AsyncTCP.cpp b/src/AsyncTCP.cpp index 2d712e1..0b5bab1 100644 --- a/src/AsyncTCP.cpp +++ b/src/AsyncTCP.cpp @@ -57,6 +57,7 @@ static uint8_t _readBuffer[MAX_PAYLOAD_SIZE]; static bool _start_asyncsock_task(void) { if (!_asyncsock_service_task_handle) { + log_i("Creating asyncTcpSock task running in core %d (-1 for any available core)...", CONFIG_ASYNC_TCP_RUNNING_CORE); xTaskCreateUniversal( _asynctcpsock_task, "asyncTcpSock",