Skip to content

Commit

Permalink
Update log.service.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
bwp91 committed Nov 12, 2023
1 parent fd1a742 commit 0337bce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ui/src/app/core/log.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,13 +89,13 @@ export class LogService {
if (line.match(/36m\[.*?]/)) {
includeNextLine = false;
} else {
this.term.write(line + '\r');
this.term.write(line + '\r\n');
return;
}
}

if (line.includes(`36m[${this.pluginName}]`)) {
this.term.write(line + '\r');
this.term.write(line + '\r\n');
includeNextLine = true;
}
});
Expand Down

0 comments on commit 0337bce

Please sign in to comment.