🪵 Removes serial logging

This commit is contained in:
Rune Harlyk
2024-06-09 14:10:53 +02:00
committed by Rune Harlyk
parent f62a8a38cb
commit 55347f1cac
7 changed files with 1 additions and 54 deletions
@@ -42,9 +42,6 @@ esp_err_t SleepService::sleep(PsychicRequest *request)
void SleepService::sleepNow()
{
#ifdef SERIAL_INFO
Serial.println("Going into deep sleep now");
#endif
ESP_LOGI("SleepService", "Going into deep sleep now");
// Callback for main code sleep preparation
if (_callbackSleep != nullptr)
@@ -70,10 +67,6 @@ void SleepService::sleepNow()
esp_sleep_pd_config(ESP_PD_DOMAIN_RTC_PERIPH, ESP_PD_OPTION_OFF);
#endif
#ifdef SERIAL_INFO
Serial.println("Good by!");
#endif
// Just to be sure
delay(100);