From 9b1cc49d3425d88e4f96dd895006ae76968e465b Mon Sep 17 00:00:00 2001 From: Gerhard Hoffmann Date: Fri, 12 Apr 2024 14:16:18 +0200 Subject: [PATCH] Minor: remove some debug output --- library/src/utilities.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/library/src/utilities.cpp b/library/src/utilities.cpp index 6e80075..c986208 100644 --- a/library/src/utilities.cpp +++ b/library/src/utilities.cpp @@ -260,7 +260,7 @@ bool Utilities::CheckSpecialDay(Configuration* cfg, const char* currentDateTimeS //cout << "CheckSpecialDay() => Month is in range between start and end" << endl; if ((current_tm.tm_mday >= start_tm.tm_mday) && (current_tm.tm_mday <= end_tm.tm_mday)) { - LOG_DEBUG("CheckSpecialDay() => SPECIAL DAY"); + //LOG_DEBUG("CheckSpecialDay() => SPECIAL DAY"); *specialDayId = spec_days_itr->second.ped_id; *specialDayPrice = cfg->SpecialDaysWorktime.find(*specialDayId)->second.pedwt_price; return true; @@ -275,7 +275,7 @@ bool Utilities::CheckSpecialDay(Configuration* cfg, const char* currentDateTimeS //cout << "CheckSpecialDay() => Month is in range between start and end" << endl; if ((current_tm.tm_mday >= start_tm.tm_mday) && (current_tm.tm_mday <= end_tm.tm_mday)) { - LOG_DEBUG("CheckSpecialDay() => SPECIAL DAY"); + //LOG_DEBUG("CheckSpecialDay() => SPECIAL DAY"); *specialDayId = spec_days_itr->second.ped_id; *specialDayPrice = cfg->SpecialDaysWorktime.find(*specialDayId)->second.pedwt_price; return true; @@ -317,7 +317,7 @@ bool Utilities::CheckSpecialDay(Configuration const *cfg, continue; } } - qDebug() << "CheckSpecialDay() => SPECIAL DAY"; + //qDebug() << "CheckSpecialDay() => SPECIAL DAY"; *specialDayId = spec_days_itr->second.ped_id; *specialDayPrice = cfg->SpecialDaysWorktime.find(*specialDayId)->second.pedwt_price; return true;