diff options
author | jebes <psteidelprogramming@gmail.com> | 2014-09-11 10:20:55 -0400 |
---|---|---|
committer | jebes <psteidelprogramming@gmail.com> | 2014-09-11 10:20:55 -0400 |
commit | dfed3d39b6607508f75bc8d79e64c3e742dee155 (patch) | |
tree | 549a4bfa8b7b902cd5f87db8d90a6b6051aee786 /contrib/epee/include/net/net_parse_helpers.h | |
parent | HOW DO I GIT? (diff) | |
parent | Merge pull request #128 from fluffypony/master (diff) | |
download | monero-dfed3d39b6607508f75bc8d79e64c3e742dee155.tar.xz |
Merge remote-tracking branch 'upstream/master'
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 +} |