Skip to content

Commit

Permalink
Merge remote-tracking branch 'bertm/issue-07217' into next
Browse files Browse the repository at this point in the history
(merging the force-pushed version)
  • Loading branch information
ArneBab committed Nov 30, 2024
2 parents 67e3ff3 + 7ce3c40 commit a9b18be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/freenet/io/comm/UdpSocketHandler.java
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ private static int getFd(DatagramChannel channel) {
Field fdVal = channel.getClass().getDeclaredField("fdVal");
return theUnsafe.getInt(channel, theUnsafe.objectFieldOffset(fdVal));
} catch (Exception e) {
Logger.error(UdpSocketHandler.class, e.getMessage(), e);
Logger.warning(UdpSocketHandler.class, e.getMessage(), e);
return -1;
}
}
Expand Down

0 comments on commit a9b18be

Please sign in to comment.