Skip to content

Commit

Permalink
fix message
Browse files Browse the repository at this point in the history
  • Loading branch information
xspanger3770 committed Nov 12, 2023
1 parent 85296e6 commit 0d28a9d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ private void runSeedlinkThread(SeedlinkNetwork seedlinkNetwork, int reconnectDel

reader.close();
} catch(ConnectException | NoRouteToHostException | SocketTimeoutException e1){
Logger.warn("Unable to connect to seedlink server `%s`: %s", seedlinkNetwork.getHost(), e1.getMessage());
Logger.warn("Unable to connect to seedlink server `%s`: %s".formatted(seedlinkNetwork.getHost(), e1.getMessage()));
} catch (Exception e) {
Logger.error(e);
}finally{
Expand Down

0 comments on commit 0d28a9d

Please sign in to comment.