Compare commits

..

1 Commits

Author SHA1 Message Date
9e22556d36 fix logging 2020-12-26 22:08:59 +01:00

View File

@@ -46,7 +46,7 @@ void clientStop(client_t *client) {
if (res != SOCK_BUSY) { if (res != SOCK_BUSY) {
close(client->sockNum); close(client->sockNum);
logMsg("clientStop: disconnect returns 0x%02x, invalid response, ignore it", res); logMsg("clientStop: disconnect returns %d, invalid response, ignore it", res);
} else { } else {
bool successfullyClosed = false; bool successfullyClosed = false;
uint32_t startTime = HAL_GetTick(); uint32_t startTime = HAL_GetTick();