log tweak

This commit is contained in:
zzz
2015-11-27 17:36:42 +00:00
parent 0519ea476e
commit 3a25a91c33

View File

@ -106,12 +106,12 @@ class SAMDatagramSession extends SAMMessageSession {
} }
} catch (DataFormatException e) { } catch (DataFormatException e) {
if (_log.shouldLog(Log.DEBUG)) { if (_log.shouldLog(Log.DEBUG)) {
_log.debug("Dropping ill-formatted I2P repliable datagram"); _log.debug("Dropping ill-formatted I2P repliable datagram", e);
} }
return; return;
} catch (I2PInvalidDatagramException e) { } catch (I2PInvalidDatagramException e) {
if (_log.shouldLog(Log.DEBUG)) { if (_log.shouldLog(Log.DEBUG)) {
_log.debug("Dropping ill-signed I2P repliable datagram"); _log.debug("Dropping ill-signed I2P repliable datagram", e);
} }
return; return;
} }