disabled erroHandler (Joan)
This commit is contained in:
parent
8f23b0b127
commit
ea0e56e6a6
|
@ -1,9 +1,9 @@
|
|||
module.exports = (app) => {
|
||||
process.on('uncaughtException', (err) => {
|
||||
module.exports = app => {
|
||||
process.on('uncaughtException', err => {
|
||||
console.error(`Caught exception: ${err}`);
|
||||
});
|
||||
|
||||
process.on('warning', (err) => {
|
||||
process.on('warning', () => {
|
||||
console.error(`My warning err`);
|
||||
});
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@ module.exports = app => {
|
|||
smtp.init();
|
||||
|
||||
require('./lib/router')(app);
|
||||
require('./lib/errorHandler')(app);
|
||||
// require('./lib/errorHandler')(app);
|
||||
};
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue