pass through endpoint errors are now filed under info rather than devel

This commit is contained in:
Peter Thorson
2013-04-23 13:23:02 -05:00
parent 648c387048
commit 5c9be64230

View File

@@ -401,7 +401,7 @@ protected:
std::stringstream s;
s << "asio async_resolve error::pass_through: "
<< "Original Error: " << ec << " (" << ec.message() << ")";
m_elog->write(log::elevel::devel,s.str());
m_elog->write(log::elevel::info,s.str());
callback(tcon->get_handle(),make_error_code(error::pass_through));
return;
}
@@ -428,7 +428,7 @@ protected:
std::stringstream s;
s << "asio async_connect error::pass_through: "
<< "Original Error: " << ec << " (" << ec.message() << ")";
m_elog->write(log::elevel::devel,s.str());
m_elog->write(log::elevel::info,s.str());
callback(tcon->get_handle(),make_error_code(error::pass_through));
return;
}