File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/main/scala/io/iohk/ethereum/network/rlpx Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -93,7 +93,7 @@ class RLPxConnectionHandler(
93
93
processHandshakeResult(result, remainingData)
94
94
95
95
case Failure (ex) =>
96
- log.warning (s " [Stopping Connection] Init AuthHandshaker message handling failed for peer $peerId due to ${ex.getMessage}" )
96
+ log.debug (s " [Stopping Connection] Init AuthHandshaker message handling failed for peer $peerId due to ${ex.getMessage}" )
97
97
context.parent ! ConnectionFailed
98
98
context stop self
99
99
}
@@ -116,7 +116,7 @@ class RLPxConnectionHandler(
116
116
maybePreEIP8Result orElse maybePostEIP8Result match {
117
117
case Success ((result, remainingData)) => processHandshakeResult(result, remainingData)
118
118
case Failure (ex) =>
119
- log.warning (s " [Stopping Connection] Response AuthHandshaker message handling failed for peer $peerId due to ${ex.getMessage}" )
119
+ log.debug (s " [Stopping Connection] Response AuthHandshaker message handling failed for peer $peerId due to ${ex.getMessage}" )
120
120
context.parent ! ConnectionFailed
121
121
context stop self
122
122
}
You can’t perform that action at this time.
0 commit comments