File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
src/main/java/de/taimos/gpsd4java/backend Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -338,7 +338,7 @@ private IGPSObject parseSUBFRAME(final JSONObject json) throws ParseException {
338338 } else if (json .has (IONOObject .NAME )) {
339339 subframe .setIono ((IONOObject ) this .parse (json .optJSONObject (IONOObject .NAME )));
340340 } else {
341- System . err . println ("Unknown subframe: " + json .toString ());
341+ AbstractResultParser . LOG . error ("Unknown subframe: {}" , json .toString ());
342342 }
343343 gps = subframe ;
344344 return gps ;
Original file line number Diff line number Diff line change @@ -339,7 +339,7 @@ private IGPSObject parseSUBFRAME(final JSONObject json) throws ParseException {
339339 } else if (json .has (IONOObject .NAME )) {
340340 subframe .setIono ((IONOObject ) this .parse (json .optJSONObject (IONOObject .NAME )));
341341 } else {
342- System . err . println ("Unknown subframe: " + json .toString ());
342+ AbstractResultParser . LOG . error ("Unknown subframe: {}" , json .toString ());
343343 }
344344 gps = subframe ;
345345 return gps ;
You can’t perform that action at this time.
0 commit comments