diff -r 47253f294a9f -r 7f02dbee58d0 main/task_http.c --- a/main/task_http.c Wed Jun 10 09:43:51 2020 +0200 +++ b/main/task_http.c Wed Jun 10 14:09:27 2020 +0200 @@ -545,7 +545,7 @@ struct netconn *conn, *newconn; static err_t err; - ESP_LOGI(TAG, "Starting http server_task"); + ESP_LOGI(TAG, "Start http server_task"); client_queue = xQueueCreate(client_queue_size,sizeof(struct netconn*)); conn = netconn_new(NETCONN_TCP); @@ -577,7 +577,7 @@ { struct netconn* conn; - ESP_LOGI(TAG, "Starting Queue task"); + ESP_LOGI(TAG, "Start Queue task"); for(;;) { xQueueReceive(client_queue, &conn, portMAX_DELAY); if (!conn) @@ -593,7 +593,7 @@ void start_http_websocket(void) { - ESP_LOGI(TAG, "Starting HTTP/Websocket server"); + ESP_LOGI(TAG, "Start HTTP/Websocket server"); ws_server_start(); xTaskCreate(&task_HTTPserver, "HTTPserver", 3000, NULL, 9, &xTaskHTTP);