mirror of
https://github.com/zadam/trilium.git
synced 2024-12-26 17:21:23 +08:00
fix the unhandled rejection logging to lock stack trace
This commit is contained in:
parent
1c733fbfab
commit
18d23af01a
1 changed files with 4 additions and 4 deletions
8
bin/www
8
bin/www
|
@ -1,12 +1,12 @@
|
||||||
#!/usr/bin/env node
|
#!/usr/bin/env node
|
||||||
|
|
||||||
process.on('unhandledRejection', (reason, p) => {
|
process.on('unhandledRejection', error => {
|
||||||
const message = 'Unhandled Rejection at: Promise' + p + ', reason:' + reason;
|
|
||||||
// this makes sure that stacktrace of failed promise is printed out
|
// this makes sure that stacktrace of failed promise is printed out
|
||||||
console.log(message);
|
console.log(error);
|
||||||
|
|
||||||
// but also try to log it into file
|
// but also try to log it into file
|
||||||
require('../services/log').error(message);
|
// we're using .info() instead of .error() because simple-node-logger emits weird error for error()
|
||||||
|
require('../services/log').info(error);
|
||||||
});
|
});
|
||||||
|
|
||||||
const app = require('../app');
|
const app = require('../app');
|
||||||
|
|
Loading…
Reference in a new issue