mirror of
https://github.com/Radarr/Radarr
synced 2025-12-07 08:54:57 +01:00
6 lines
183 B
JavaScript
6 lines
183 B
JavaScript
const colors = require('ansi-colors');
|
|
|
|
module.exports = function errorHandler(error) {
|
|
console.log(colors.red(`Error (${error.plugin}): ${error.message}`));
|
|
this.emit('end');
|
|
};
|