forked from external-repos/pa11y-dashboard
Add better error stacks to the log
This commit is contained in:
3
app.js
3
app.js
@@ -65,6 +65,9 @@ function initApp (config, callback) {
|
|||||||
});
|
});
|
||||||
app.express.use(function (err, req, res, next) {
|
app.express.use(function (err, req, res, next) {
|
||||||
/* jshint unused: false */
|
/* jshint unused: false */
|
||||||
|
if (err.code === 'ECONNREFUSED') {
|
||||||
|
err = new Error('Could not connect to pa11y-webservice');
|
||||||
|
}
|
||||||
app.emit('route-error', err);
|
app.emit('route-error', err);
|
||||||
if (process.env.NODE_ENV !== 'production') {
|
if (process.env.NODE_ENV !== 'production') {
|
||||||
res.locals.error = err;
|
res.locals.error = err;
|
||||||
|
8
index.js
8
index.js
@@ -11,9 +11,11 @@ require('./app')(config, function (err, app) {
|
|||||||
console.log(chalk.grey('uri: %s'), app.address);
|
console.log(chalk.grey('uri: %s'), app.address);
|
||||||
|
|
||||||
app.on('route-error', function (err) {
|
app.on('route-error', function (err) {
|
||||||
if (err.code === 'ECONNREFUSED') {
|
var stack = (err.stack ? err.stack.split('\n') : [err.message]);
|
||||||
console.log(chalk.red('Error: could not connect to pa11y-webservice'));
|
var msg = chalk.red(stack.shift());
|
||||||
}
|
console.error('');
|
||||||
|
console.error(msg);
|
||||||
|
console.error(chalk.grey(stack.join('\n')));
|
||||||
});
|
});
|
||||||
|
|
||||||
});
|
});
|
||||||
|
Reference in New Issue
Block a user