mirror of
https://gitlab.silvrtree.co.uk/martind2000/nci.git
synced 2025-01-11 14:55:08 +00:00
10 lines
205 B
JavaScript
10 lines
205 B
JavaScript
|
'use strict';
|
||
|
|
||
|
module.exports = function(err, req, res, next) {
|
||
|
console.error(
|
||
|
'Error is occurred during requesting ' +
|
||
|
req.resource.namespace.name + ' ' + req.action + ':',
|
||
|
err.stack || err
|
||
|
);
|
||
|
};
|