From 72f18fd05821cb02eb6afc1f7ba166a0630d5fbe Mon Sep 17 00:00:00 2001 From: wowario Date: Fri, 3 Feb 2023 15:41:54 +0300 Subject: [PATCH] bump log level MoneroPulse DNS check --- src/checkpoints/checkpoints.cpp | 6 +++--- src/common/dns_utils.cpp | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/checkpoints/checkpoints.cpp b/src/checkpoints/checkpoints.cpp index fdc3cf727..55fd36b5c 100644 --- a/src/checkpoints/checkpoints.cpp +++ b/src/checkpoints/checkpoints.cpp @@ -277,13 +277,13 @@ namespace cryptonote std::vector records; // All four MoneroPulse domains have DNSSEC on and valid - static const std::vector dns_urls = { "" + static const std::vector dns_urls = { }; - static const std::vector testnet_dns_urls = { "" + static const std::vector testnet_dns_urls = { }; - static const std::vector stagenet_dns_urls = { "" + static const std::vector stagenet_dns_urls = { }; if (!tools::dns_utils::load_txt_records_from_dns(records, nettype == TESTNET ? testnet_dns_urls : nettype == STAGENET ? stagenet_dns_urls : dns_urls)) diff --git a/src/common/dns_utils.cpp b/src/common/dns_utils.cpp index 2fd15dbcd..fb679462f 100644 --- a/src/common/dns_utils.cpp +++ b/src/common/dns_utils.cpp @@ -553,7 +553,7 @@ bool load_txt_records_from_dns(std::vector &good_records, const std if (num_valid_records < 2) { - LOG_PRINT_L0("WARNING: no two valid DNS TXT records were received"); + LOG_PRINT_L2("WARNING: no two valid DNS TXT records were received"); return false; }