Add error event
parent
97d6b8b1bb
commit
3eabf3b319
|
@ -59,8 +59,11 @@ export default class Client extends Eris.Client {
|
||||||
}
|
}
|
||||||
|
|
||||||
public async errorEvents() {
|
public async errorEvents() {
|
||||||
process.on('unhandledRejection', (error) => {
|
process.on('unhandledRejection', (error: Error) => {
|
||||||
this.signale.error(error);
|
this.util.handleError(error);
|
||||||
|
});
|
||||||
|
this.on('error', (error) => {
|
||||||
|
this.util.handleError(error);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue