Skip to content

Commit

Permalink
Catch all exceptions in the X32RemoteSender to keep it alive
Browse files Browse the repository at this point in the history
  • Loading branch information
Jurrie committed Jan 6, 2025
1 parent 0c247bf commit 7626f4b
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,10 @@ public void run()
{
LOGGER.error("Error sending /xremote to X32 at " + x32Address.getAddress().getCanonicalHostName(), e);
}
catch (Exception e)
{
LOGGER.error("Unknown error sending /xremote to X32 at " + x32Address.getAddress().getCanonicalHostName(), e);
}
}
}
}
Expand Down

0 comments on commit 7626f4b

Please sign in to comment.