This commit is contained in:
Jonathan Rainville 2018-05-24 16:34:27 -04:00
parent 72115bb636
commit a2c7f07f3d
2 changed files with 2 additions and 1 deletions

View File

@ -45,7 +45,7 @@ class Engine {
}, 0);
if (this.interceptLogs || this.interceptLogs === undefined) {
// this.doInterceptLogs();
this.doInterceptLogs();
}
}

View File

@ -30,6 +30,7 @@ class ProcessWrapper {
context.console.log = this._log.bind(this, 'log');
context.console.warn = this._log.bind(this, 'warn');
context.console.error = this._log.bind(this, 'error');
context.console.info = this._log.bind(this, 'info');
context.console.debug = this._log.bind(this, 'debug');
context.console.trace = this._log.bind(this, 'trace');