Haha-Yes/events/process/unhandledRejection.js
2022-06-17 02:14:14 +02:00

7 lines
146 B
JavaScript

export default {
name: 'unhandledRejection',
once: true,
async execute(error) {
console.error('Unhandled promise rejection:', error);
},
};