Skip to content

Commit

Permalink
Merge pull request #2611 from guusdk/OF-2729_Log-verbosity
Browse files Browse the repository at this point in the history
OF-2729 / OF-2785: Reduce log level of to-be-expected exception
  • Loading branch information
akrherz authored Nov 20, 2024
2 parents ad0c69b + 871cc08 commit 4f61a08
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,8 @@ public static Map.Entry<Socket, Boolean> createSocketToXmppDomain( String xmppDo
entryFuture.get(maxWait.toMillis(), TimeUnit.MILLISECONDS);
}
Log.trace("Done iterating over a priority set for '{}'", xmppDomain);
} catch (CancellationException e) {
Log.debug("DNS resolution for '{}' got cancelled. Stopping...", xmppDomain);
} catch (InterruptedException e) {
Log.debug("DNS resolution for '{}' got interrupted. Stopping...", xmppDomain);
} catch (Throwable e) {
Expand Down

0 comments on commit 4f61a08

Please sign in to comment.