Skip to content

Commit 9928018

Browse files
committed
Demote log statement to trace
It is known to overflow logs and cause high cpu usage. We don't know why it appeared so late though, as it worked for years without issues.
1 parent e4ba1b9 commit 9928018

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ice-adapter/src/main/java/com/faforever/iceadapter/ice/PeerConnectivityCheckerModule.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ synchronized void stop() {
6969
*/
7070
void echoReceived(byte[] data, int offset, int length) {
7171
if (length != 9) {
72-
log.warn("Received echo of wrong length, length: {}", length);
72+
log.trace("Received echo of wrong length, length: {}", length);
7373
}
7474

7575
int rtt = (int) (System.currentTimeMillis() - Longs.fromByteArray(Arrays.copyOfRange(data, offset + 1, length)));

0 commit comments

Comments
 (0)