mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-08-27 18:01:39 +02:00
i2p: fix log when an interruption happens during Accept
Before, interruption was printed as an error. Also, it did not log the reason when an interruption happened, e.g. "Error accepting:". Co-authored-by: Vasil Dimov <vd@FreeBSD.org>
This commit is contained in:
@@ -202,7 +202,11 @@ bool Session::Accept(Connection& conn)
|
||||
return true;
|
||||
}
|
||||
|
||||
LogPrintLevel(BCLog::I2P, BCLog::Level::Debug, "Error accepting%s: %s\n", disconnect ? " (will close the session)" : "", errmsg);
|
||||
if (*m_interrupt) {
|
||||
LogPrintLevel(BCLog::I2P, BCLog::Level::Debug, "Accept was interrupted\n");
|
||||
} else {
|
||||
LogPrintLevel(BCLog::I2P, BCLog::Level::Debug, "Error accepting%s: %s\n", disconnect ? " (will close the session)" : "", errmsg);
|
||||
}
|
||||
if (disconnect) {
|
||||
LOCK(m_mutex);
|
||||
Disconnect();
|
||||
|
Reference in New Issue
Block a user