mirror of
https://github.com/monero-project/monero.git
synced 2025-05-05 03:55:00 -04:00
moved non-critical warnings and errors to log level 1
This commit is contained in:
parent
4290c78160
commit
cf5a8b1d6c
12 changed files with 108 additions and 107 deletions
|
@ -103,7 +103,7 @@ namespace net_utils
|
|||
boost::smatch result;
|
||||
if(!boost::regex_search(uri, result, rexp_match_uri, boost::match_default) && result[0].matched)
|
||||
{
|
||||
LOG_PRINT_L0("[PARSE URI] regex not matched for uri: " << uri);
|
||||
LOG_PRINT_L1("[PARSE URI] regex not matched for uri: " << uri);
|
||||
content.m_path = uri;
|
||||
return true;
|
||||
}
|
||||
|
@ -139,7 +139,7 @@ namespace net_utils
|
|||
boost::smatch result;
|
||||
if(!boost::regex_search(url_str, result, rexp_match_uri, boost::match_default) && result[0].matched)
|
||||
{
|
||||
LOG_PRINT_L0("[PARSE URI] regex not matched for uri: " << rexp_match_uri);
|
||||
LOG_PRINT_L1("[PARSE URI] regex not matched for uri: " << rexp_match_uri);
|
||||
//content.m_path = uri;
|
||||
return true;
|
||||
}
|
||||
|
@ -165,4 +165,4 @@ namespace net_utils
|
|||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue