Skip to content

Commit

Permalink
remove debug output (#202)
Browse files Browse the repository at this point in the history
  • Loading branch information
makrsmark authored Nov 20, 2024
1 parent 8e75d6c commit 0b5c8ae
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion lib/plugins/Label_15.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ export class Label_15 extends DecoderPlugin {
const hhmm = between.substring(22, 26);
if(ddmmyy != '------') {
const mmddyy = ddmmyy.substring(2, 4) + ddmmyy.substring(0, 2) + ddmmyy.substring(4);
console.log(`Decoder: mmddyy: ${mmddyy}, hhmm: ${hhmm}`);
ResultFormatter.off(decodeResult, DateTimeUtils.convertDateTimeToEpoch(hhmm+'00', mmddyy), 'epoch');
} else {
ResultFormatter.off(decodeResult, DateTimeUtils.convertHHMMSSToTod(hhmm), 'tod');
Expand Down
1 change: 0 additions & 1 deletion lib/plugins/Label_1L_Slash.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ export class Label_1L_Slash extends DecoderPlugin { // eslint-disable-line camel
const part = parts[i].split(' ');
data.set(part[0], part.slice(1).join(' '));
}
console.log(data);

const position = {
latitude: Number(data.get('LAT')),
Expand Down

0 comments on commit 0b5c8ae

Please sign in to comment.