Skip to content
This repository was archived by the owner on Feb 23, 2021. It is now read-only.

Commit 87da85c

Browse files
committed
Remove regex that remove lnd log new lines
1 parent 3866dad commit 87da85c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/view/cli.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ class LogOutput extends Component {
6060

6161
get printLogs() {
6262
setTimeout(() => this._ref.current.scrollToEnd(), 50);
63-
return this.props.logs.map(l => l.replace(/\s+$/, '')).join('\n');
63+
return this.props.logs.join('\n');
6464
}
6565

6666
render() {

0 commit comments

Comments
 (0)