Skip to content

Commit

Permalink
Reduce NTP server printout level
Browse files Browse the repository at this point in the history
  • Loading branch information
lptr committed Dec 1, 2024
1 parent e542631 commit b7569a0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main/kernel/drivers/RtcDriver.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ class RtcDriver {
}

static void printServers(void) {
Log.info("List of configured NTP servers:");
Log.debug("List of configured NTP servers:");

for (uint8_t i = 0; i < SNTP_MAX_SERVERS; ++i) {
if (esp_sntp_getservername(i)) {
Expand All @@ -140,7 +140,7 @@ class RtcDriver {
char buff[48];
ip_addr_t const* ip = esp_sntp_getserver(i);
if (ipaddr_ntoa_r(ip, buff, 48) != NULL) {
Log.info(" - server %d: %s", i, buff);
Log.debug(" - server %d: %s", i, buff);
}
}
}
Expand Down

0 comments on commit b7569a0

Please sign in to comment.