There was an error while loading. Please reload this page.
1 parent 4ce1d5e commit 6279c7bCopy full SHA for 6279c7b
1 file changed
reader/src/main/java/com/rusefi/can/reader/impl/AutoFormatReader.java
@@ -43,7 +43,7 @@ public void detectReader(String firstLine) {
43
&& !firstLine.contains(BusMasterReader.HEADER)
44
&& !firstLine.equals(EcuMasterDongleReader.HEADER)
45
)
46
- throw new IllegalStateException("Unexpected first line");
+ throw new IllegalStateException("Unexpected first line: " + firstLine);
47
if (firstLine.contains(CanHackerReader.HEADER)) {
48
delegate = CanHackerReader.INSTANCE;
49
} else if (firstLine.startsWith(IxxatReader.START_TIME) || firstLine.startsWith(IxxatReader.BusNo) ) {
0 commit comments