We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b0b75cd commit d0597a9Copy full SHA for d0597a9
src/utility/time/TimeService.cpp
@@ -108,11 +108,11 @@ unsigned long TimeService::getTime()
108
void TimeService::setTimeZoneData(long offset, unsigned long dst_until)
109
{
110
if(_timezone_offset != offset)
111
- DEBUG_DEBUG("ArduinoIoTCloudTCP::%s tz_offset: [%d]", __FUNCTION__, offset);
+ DEBUG_VERBOSE("ArduinoIoTCloudTCP::%s tz_offset: [%d]", __FUNCTION__, offset);
112
_timezone_offset = offset;
113
114
if(_timezone_dst_until != dst_until)
115
- DEBUG_DEBUG("ArduinoIoTCloudTCP::%s tz_dst_unitl: [%ul]", __FUNCTION__, dst_until);
+ DEBUG_VERBOSE("ArduinoIoTCloudTCP::%s tz_dst_unitl: [%ul]", __FUNCTION__, dst_until);
116
_timezone_dst_until = dst_until;
117
118
_is_tz_configured = true;
0 commit comments