mirror of
https://github.com/XRPLF/rippled.git
synced 2026-04-29 15:37:57 +00:00
pass through endpoint errors are now filed under info rather than devel
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user