bump log level MoneroPulse DNS check

This commit is contained in:
wowario 2023-02-03 15:41:54 +03:00
parent c2e62e58ea
commit 72f18fd058
No known key found for this signature in database
GPG key ID: 24DCBE762DE9C111
2 changed files with 4 additions and 4 deletions

View file

@ -277,13 +277,13 @@ namespace cryptonote
std::vector<std::string> records;
// All four MoneroPulse domains have DNSSEC on and valid
static const std::vector<std::string> dns_urls = { ""
static const std::vector<std::string> dns_urls = {
};
static const std::vector<std::string> testnet_dns_urls = { ""
static const std::vector<std::string> testnet_dns_urls = {
};
static const std::vector<std::string> stagenet_dns_urls = { ""
static const std::vector<std::string> 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))

View file

@ -553,7 +553,7 @@ bool load_txt_records_from_dns(std::vector<std::string> &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;
}