Skip to content

Commit

Permalink
Remove debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
psi-4ward committed Dec 8, 2020
1 parent 1341b49 commit 1090c72
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion app/src/persistentStorage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ class PersistentStorage {
const d = new Date(data.payload.tstamp);
data.payload.date = `${d.getFullYear()}-${p(d.getMonth() + 1)}-${p(d.getDate())} ${(p(d.getHours()))}:${p(d.getMinutes())}:${p(d.getSeconds())}.${('00' + d.getMilliseconds()).slice(-3)}`;
const res = csvFields.map(fld => data.payload[fld]);
console.log(data.payload.raw)
this.writeLn(res.join(';'));
});
}
Expand Down

0 comments on commit 1090c72

Please sign in to comment.