forked from I2P_Developers/i2p.i2p
Notes on STREAM STATUS messages when SILENT=true
Fix one message for STREAM CONNECT that wasn't honoring SILENT setting PING failure sends a SESSION STATUS message Implement ping/pong in client Delay at end of client send so data gets through in v3 mode log tweaks Exception catch tweaks
This commit is contained in:
@@ -187,7 +187,9 @@ class SAMv1Handler extends SAMHandler implements SAMRawReceiver, SAMDatagramRece
|
||||
} catch (IOException e) {
|
||||
if (_log.shouldLog(Log.DEBUG))
|
||||
_log.debug("Caught IOException for message [" + msg + "]", e);
|
||||
} catch (Exception e) {
|
||||
} catch (SAMException e) {
|
||||
_log.error("Unexpected exception for message [" + msg + "]", e);
|
||||
} catch (RuntimeException e) {
|
||||
_log.error("Unexpected exception for message [" + msg + "]", e);
|
||||
} finally {
|
||||
if (_log.shouldLog(Log.DEBUG))
|
||||
|
||||
Reference in New Issue
Block a user