This repository has been archived on 2024-03-06. You can view files and clone it, but cannot push or open issues or pull requests.
discord.js-rr-bot/Src/Events/Client/ErrorManager.js
2022-06-18 23:28:38 -04:00

12 lines
No EOL
301 B
JavaScript

module.exports = {
name: "errorManager",
customEvent: true,
run: async(client) => {
process.on('unhandledRejection', error => {
console.log(error)
})
process.on('uncaughtException', error => {
console.log(error)
})
}
}