set max listeners to 50

This commit is contained in:
Jonathan Rainville 2018-05-16 15:08:22 -04:00
parent 256276c884
commit 0611fee841
1 changed files with 1 additions and 0 deletions

View File

@ -14,6 +14,7 @@ function log(eventType, eventName) {
//console.log(eventType, eventName);
}
EventEmitter.prototype._maxListeners = 50;
const _on = EventEmitter.prototype.on;
const _setHandler = EventEmitter.prototype.setHandler;