Skip to content

Commit 48c031a

Browse files
committed
log unparseable messages in log
1 parent de0a019 commit 48c031a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/aero/t2s/modes/ModeSTrackHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ public DownlinkFormat handleSync(final String input) {
8383
} catch (InvalidExtendedSquitterTypeCodeException | UnknownDownlinkFormatException e) {
8484
LOGGER.error(e.getMessage());
8585
} catch (Throwable throwable) {
86-
LOGGER.error("Message could not be parsed", throwable);
86+
LOGGER.error("Message could not be parsed: [" + input + "]", throwable);
8787
}
8888

8989
return null;

0 commit comments

Comments
 (0)