aboutsummaryrefslogtreecommitdiff
path: root/contrib/epee/include/net/net_parse_helpers.h
diff options
context:
space:
mode:
authorRiccardo Spagni <ric@spagni.net>2014-09-11 12:00:30 +0200
committerRiccardo Spagni <ric@spagni.net>2014-09-11 12:00:30 +0200
commit6a70de32bf872d97f9eebc7564f1ee41ff149c36 (patch)
tree33c0d997ecfbebe1705142c6e5fe9bd1e5aec278 /contrib/epee/include/net/net_parse_helpers.h
parentMerge pull request #123 from fluffypony/master (diff)
parentcpu affinity fixes in performance tests for FreeBSD (diff)
downloadmonero-6a70de32bf872d97f9eebc7564f1ee41ff149c36.tar.xz
Merge pull request #127 from fluffypony/master
FreeBSD compatibility and default log level changes
Diffstat (limited to 'contrib/epee/include/net/net_parse_helpers.h')
-rw-r--r--contrib/epee/include/net/net_parse_helpers.h6
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
+}