mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-05-13 12:02:23 -04:00
Demote keepalive warning to debug entry
The error is pretty obscure for a normal user to see in console, and it just reflects a network condition or some delay in the communication with another node, which may be relatively frequent. Leaving a TODO comment to check if this can cause issues.
This commit is contained in:
parent
d99b5ade5e
commit
bd0f78b10a
1 changed files with 2 additions and 1 deletions
|
@ -189,7 +189,8 @@ public class KeepAliveManager implements MessageListener, ConnectionListener, Pe
|
|||
handlerMap.put(uid, keepAliveHandler);
|
||||
keepAliveHandler.sendPingAfterRandomDelay(connection);
|
||||
} else {
|
||||
log.warn("Connection with id {} has not completed and is still in our map. " +
|
||||
// TODO check if this situation causes any issues
|
||||
log.debug("Connection with id {} has not completed and is still in our map. " +
|
||||
"We will try to ping that peer at the next schedule.", uid);
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue