enbale multiple arguments in dashboard

This commit is contained in:
Jonathan Rainville 2018-06-19 14:15:16 -04:00
parent 88cc4d05c0
commit cd4bce8d12

View File

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