From b82f098383764530fbd5e38f848c3d850a425980 Mon Sep 17 00:00:00 2001 From: Theo Arends <11044339+arendst@users.noreply.github.com> Date: Sat, 2 Oct 2021 14:49:50 +0200 Subject: [PATCH] Remove interfering debug information --- tasmota/support.ino | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tasmota/support.ino b/tasmota/support.ino index cae47b453..24a2a953b 100644 --- a/tasmota/support.ino +++ b/tasmota/support.ino @@ -154,9 +154,9 @@ TasAutoMutex::TasAutoMutex(SemaphoreHandle_t*mutex, const char *name, int maxWai this->name = name; if (take) { this->taken = xSemaphoreTakeRecursive(this->mutex, this->maxWait); - if (!this->taken){ - Serial.printf("\r\nMutexfail %s\r\n", this->name); - } +// if (!this->taken){ +// Serial.printf("\r\nMutexfail %s\r\n", this->name); +// } } } else { this->mutex = (SemaphoreHandle_t)nullptr; @@ -192,9 +192,9 @@ void TasAutoMutex::take() { if (this->mutex) { if (!this->taken) { this->taken = xSemaphoreTakeRecursive(this->mutex, this->maxWait); - if (!this->taken){ - Serial.printf("\r\nMutexfail %s\r\n", this->name); - } +// if (!this->taken){ +// Serial.printf("\r\nMutexfail %s\r\n", this->name); +// } } } }