We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1718768 + 670100b commit 05c4f1cCopy full SHA for 05c4f1c
src/serialmonitor/serialportctrl.ts
@@ -105,7 +105,7 @@ export class SerialPortCtrl {
105
this._child.stdout.on("data", (data) => {
106
if (this.isActive) {
107
const jsonObj = JSON.parse(data.toString())
108
- this._bufferedOutputChannel.append(jsonObj["timestamp"] + jsonObj["payload"] + "\n");
+ this._bufferedOutputChannel.append(jsonObj["timestamp"] + jsonObj["payload"]);
109
}
110
});
111
// TODO: add message check to ensure _child spawned without errors
0 commit comments