Skip to content

Commit d0597a9

Browse files
committed
TimeService::setTimeZoneData: change timezone prints from DEBUG_DEBUG to DEBUG_VERBOSE
1 parent b0b75cd commit d0597a9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/utility/time/TimeService.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,11 +108,11 @@ unsigned long TimeService::getTime()
108108
void TimeService::setTimeZoneData(long offset, unsigned long dst_until)
109109
{
110110
if(_timezone_offset != offset)
111-
DEBUG_DEBUG("ArduinoIoTCloudTCP::%s tz_offset: [%d]", __FUNCTION__, offset);
111+
DEBUG_VERBOSE("ArduinoIoTCloudTCP::%s tz_offset: [%d]", __FUNCTION__, offset);
112112
_timezone_offset = offset;
113113

114114
if(_timezone_dst_until != dst_until)
115-
DEBUG_DEBUG("ArduinoIoTCloudTCP::%s tz_dst_unitl: [%ul]", __FUNCTION__, dst_until);
115+
DEBUG_VERBOSE("ArduinoIoTCloudTCP::%s tz_dst_unitl: [%ul]", __FUNCTION__, dst_until);
116116
_timezone_dst_until = dst_until;
117117

118118
_is_tz_configured = true;

0 commit comments

Comments
 (0)