Skip to content

Commit 8b5ac80

Browse files
committed
Changed debug message
1 parent 0b83429 commit 8b5ac80

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/GSMConnectionManager.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ GSMConnectionManager::GSMConnectionManager(const char *pin, const char *apn, con
6969
unsigned long GSMConnectionManager::getTime() {
7070
unsigned long time = ConnectionManager::getTime() {
7171
if (!NTPUtils::isTimeValid(time)) {
72-
debugMessage("Bogus NTP time from API, fallback to UDP method", 0);
72+
debugMessage("Bogus UDP time from, fallback to Network method", 0);
7373
time = gsmAccess.getTime();
7474
}
7575
return time;

src/WiFiConnectionManager.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ WiFiConnectionManager::WiFiConnectionManager(const char *ssid, const char *pass)
6565
unsigned long WiFiConnectionManager::getTime() {
6666
unsigned long time = ConnectionManager::getTime();
6767
if (!NTPUtils::isTimeValid(time)) {
68-
debugMessage("Bogus NTP time from API, fallback to UDP method", 0);
68+
debugMessage("Bogus UDP time from, fallback to Network method", 0);
6969
time = WiFi.getTime();
7070
}
7171
return time;

0 commit comments

Comments
 (0)