mirror of
https://github.com/monero-project/monero.git
synced 2024-11-18 10:01:02 +00:00
Merge pull request #3974
1789b76
cryptonote_protocol_handler: log when dropping a peer (moneromooo-monero)
This commit is contained in:
commit
ab7ab29fc0
1 changed files with 3 additions and 0 deletions
|
@ -1712,6 +1712,9 @@ skip:
|
||||||
template<class t_core>
|
template<class t_core>
|
||||||
void t_cryptonote_protocol_handler<t_core>::drop_connection(cryptonote_connection_context &context, bool add_fail, bool flush_all_spans)
|
void t_cryptonote_protocol_handler<t_core>::drop_connection(cryptonote_connection_context &context, bool add_fail, bool flush_all_spans)
|
||||||
{
|
{
|
||||||
|
LOG_DEBUG_CC(context, "dropping connection id " << context.m_connection_id <<
|
||||||
|
", add_fail " << add_fail << ", flush_all_spans " << flush_all_spans);
|
||||||
|
|
||||||
if (add_fail)
|
if (add_fail)
|
||||||
m_p2p->add_host_fail(context.m_remote_address);
|
m_p2p->add_host_fail(context.m_remote_address);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue