diff --git a/src/emsesp.cpp b/src/emsesp.cpp index 28a54f6bc..7a56927b5 100644 --- a/src/emsesp.cpp +++ b/src/emsesp.cpp @@ -868,7 +868,7 @@ void EMSESP::console_commands(Shell & shell, unsigned int context) { uint8_t watch = emsesp::EMSESP::watch(); if (watch == WATCH_OFF) { - shell.printfln(F("Watch is off")); + shell.printfln(F("Watching telegrams is off")); return; } diff --git a/src/telegram.cpp b/src/telegram.cpp index fedff3f94..1c8326511 100644 --- a/src/telegram.cpp +++ b/src/telegram.cpp @@ -249,7 +249,7 @@ void TxService::loop() { if ((uuid::get_uptime() - last_tx_check_) > TX_LOOP_WAIT) { last_tx_check_ = uuid::get_uptime(); if (!tx_active() && (EMSbus::bus_connected())) { - LOG_ERROR(F("Tx is not active. Please check connection.")); + LOG_ERROR(F("Tx is not active. Please check settings and the circuit connection.")); } } #endif