mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-06 07:49:52 +03:00
notice telegram log only for read, not for response
This commit is contained in:
@@ -860,13 +860,14 @@ void EMSESP::process_version(std::shared_ptr<const Telegram> telegram) {
|
|||||||
bool EMSESP::process_telegram(std::shared_ptr<const Telegram> telegram) {
|
bool EMSESP::process_telegram(std::shared_ptr<const Telegram> telegram) {
|
||||||
// if watching or reading...
|
// if watching or reading...
|
||||||
if ((telegram->type_id == read_id_ || telegram->type_id == response_id_) && (telegram->dest == txservice_.ems_bus_id())) {
|
if ((telegram->type_id == read_id_ || telegram->type_id == response_id_) && (telegram->dest == txservice_.ems_bus_id())) {
|
||||||
// show log for read and response
|
|
||||||
LOG_NOTICE("%s", pretty_telegram(telegram).c_str());
|
|
||||||
if (telegram->type_id == response_id_) {
|
if (telegram->type_id == response_id_) {
|
||||||
if (!read_next_) {
|
if (!read_next_) {
|
||||||
response_id_ = 0;
|
response_id_ = 0;
|
||||||
}
|
}
|
||||||
publish_response(telegram);
|
publish_response(telegram);
|
||||||
|
} else {
|
||||||
|
// show log only for read and not for response
|
||||||
|
LOG_NOTICE("%s", pretty_telegram(telegram).c_str());
|
||||||
}
|
}
|
||||||
// check if read is finished or gives more parts
|
// check if read is finished or gives more parts
|
||||||
if (!read_next_) {
|
if (!read_next_) {
|
||||||
|
|||||||
Reference in New Issue
Block a user