3
0
mirror of https://github.com/Qortal/altcoinj.git synced 2025-02-12 18:25:51 +00:00

Restore error message that got accidentally taken out.

This commit is contained in:
Mike Hearn 2012-04-06 18:40:51 +02:00
parent 4e3d5313e6
commit 40e4ac0a49

View File

@ -221,7 +221,7 @@ public class Peer {
disconnect();
throw new PeerException(e);
} catch (RuntimeException e) {
log.error("Unexpected exception in peer loop: ", e.getMessage());
log.error("Unexpected exception in peer loop", e);
disconnect();
throw e;
}