diff options
author | fluffypony <ric@spagni.net> | 2014-09-09 11:32:00 +0200 |
---|---|---|
committer | fluffypony <ric@spagni.net> | 2014-09-09 11:32:00 +0200 |
commit | cf5a8b1d6c3df615641e81328bb3d8cf80cd70e3 (patch) | |
tree | 7a1140728c5c5becac26e7b90f57d34d278c2d5e /contrib/epee/include/net/net_parse_helpers.h | |
parent | build number increase after release (diff) | |
download | monero-cf5a8b1d6c3df615641e81328bb3d8cf80cd70e3.tar.xz |
moved non-critical warnings and errors to log level 1
Diffstat (limited to 'contrib/epee/include/net/net_parse_helpers.h')
-rw-r--r-- | contrib/epee/include/net/net_parse_helpers.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/epee/include/net/net_parse_helpers.h b/contrib/epee/include/net/net_parse_helpers.h index 586dac98d..ce6ca60dc 100644 --- a/contrib/epee/include/net/net_parse_helpers.h +++ b/contrib/epee/include/net/net_parse_helpers.h @@ -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 } } -}
\ No newline at end of file +} |