Skip to content

Commit 5d2284b

Browse files
rishabh3112evenstensberg
authored andcommittedFeb 5, 2019
feat(log): clean single line logs
1 parent 7c830b5 commit 5d2284b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎packages/log/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ export class Logger {
7272
private build(message: string): string {
7373
const lines = message.split("\n");
7474
if (lines.length === 1) {
75-
return lines[0];
75+
return lines[0] + "\n";
7676
}
7777
message = lines[0] + "\n";
7878

0 commit comments

Comments
 (0)
Please sign in to comment.