22 lines
638 B
JavaScript
22 lines
638 B
JavaScript
// Copyright IBM Corp. 2017,2018. All Rights Reserved.
|
|
// Node module: loopback
|
|
// This file is licensed under the MIT License.
|
|
// License text available at https://opensource.org/licenses/MIT
|
|
|
|
'use strict';
|
|
|
|
exports.logAllServerErrors = function(app) {
|
|
exports.logServerErrorsOtherThan(-1, app);
|
|
};
|
|
|
|
exports.logServerErrorsOtherThan = function(statusCode, app) {
|
|
app.use((err, req, res, next) => {
|
|
if ((err.statusCode || 500) !== statusCode) {
|
|
console.log('Unhandled error for request %s %s: %s',
|
|
req.method, req.url, err.stack || err);
|
|
}
|
|
res.statusCode = err.statusCode || 500;
|
|
res.json(err);
|
|
});
|
|
};
|