SSU: reduce log level of uncaught errors processing I2NP message

This commit is contained in:
zzz
2014-12-10 17:56:37 +00:00
parent c24168d5cd
commit 262721cc90

View File

@@ -225,7 +225,7 @@ class MessageReceiver {
_context.messageHistory().droppedInboundMessage(state.getMessageId(), state.getFrom(), "error: " + ime.toString() + ": " + state.toString());
return null;
} catch (Exception e) {
_log.log(Log.CRIT, "Error dealing with a message: " + state, e);
_log.error("Error handling a message: " + state, e);
_context.messageHistory().droppedInboundMessage(state.getMessageId(), state.getFrom(), "error: " + e.toString() + ": " + state.toString());
return null;
} finally {