mirror of
https://github.com/fosrl/pangolin.git
synced 2026-01-28 22:00:51 +00:00
catch all uncaught errors in winston
This commit is contained in:
@@ -72,4 +72,13 @@ const logger = winston.createLogger({
|
|||||||
transports,
|
transports,
|
||||||
});
|
});
|
||||||
|
|
||||||
|
process.on("uncaughtException", (error) => {
|
||||||
|
logger.error("Uncaught Exception:", { error, stack: error.stack });
|
||||||
|
process.exit(1);
|
||||||
|
});
|
||||||
|
|
||||||
|
process.on("unhandledRejection", (reason, _) => {
|
||||||
|
logger.error("Unhandled Rejection:", { reason });
|
||||||
|
});
|
||||||
|
|
||||||
export default logger;
|
export default logger;
|
||||||
|
|||||||
Reference in New Issue
Block a user