From 7b90fa5c13a2261520a3d477293b5d0c7de7b001 Mon Sep 17 00:00:00 2001 From: Zach Hobbs Date: Mon, 6 Jan 2025 14:33:45 -0600 Subject: [PATCH] fixed console logging on windows devices. --- src/application/console/logReader.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/application/console/logReader.ts b/src/application/console/logReader.ts index 6385bc2..52faed3 100644 --- a/src/application/console/logReader.ts +++ b/src/application/console/logReader.ts @@ -61,8 +61,8 @@ export class LogReader { }) stream.on('data', (data) => { - process.stdout.write('\r' + `[${filename}]\n${data}`) - process.stdout.write('\n> ') + console.log(`[${filename}]`); + console.log(data.toString()); // }) currentPosition = newPosition