enbale multiple arguments in dashboard

This commit is contained in:
Jonathan Rainville 2018-06-19 14:15:16 -04:00 committed by Iuri Matias
parent 8ecd382a1f
commit c9590d476c
1 changed files with 2 additions and 2 deletions

View File

@ -77,8 +77,8 @@ class Dashboard {
this.screen.render();
}
logEntry(text) {
this.logText.log(text);
logEntry() {
this.logText.log(...arguments);
this.screen.render();
}