Skip to content

Commit

Permalink
log unparseable messages in log
Browse files Browse the repository at this point in the history
  • Loading branch information
filipjonckers committed Jan 6, 2022
1 parent de0a019 commit 48c031a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/aero/t2s/modes/ModeSTrackHandler.java
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public DownlinkFormat handleSync(final String input) {
} catch (InvalidExtendedSquitterTypeCodeException | UnknownDownlinkFormatException e) {
LOGGER.error(e.getMessage());
} catch (Throwable throwable) {
LOGGER.error("Message could not be parsed", throwable);
LOGGER.error("Message could not be parsed: [" + input + "]", throwable);
}

return null;
Expand Down

0 comments on commit 48c031a

Please sign in to comment.