localhost_oa_based/src/helper/catchError.ts

6 lines
144 B
TypeScript
Raw Normal View History

2024-02-28 08:32:35 +08:00
export function catchError() {
process.on('unhandledRejection', (reason, p) => {
2024-02-28 17:02:46 +08:00
console.log('Promise: ', p, 'Reason: ', reason);
});
2024-02-28 08:32:35 +08:00
}