logging error message
This commit is contained in:
parent
fd382fcd9f
commit
456c2dc831
2 changed files with 4 additions and 7 deletions
|
@ -3,23 +3,20 @@ const { postToStats } = require('../controllers/statsController.js');
|
|||
|
||||
module.exports = {
|
||||
handleRequestError (action, originalUrl, ip, error, res) {
|
||||
logger.error('Request Error:', error);
|
||||
logger.error('Request Error:', error.message);
|
||||
postToStats(action, originalUrl, ip, null, null, error);
|
||||
if (error.response) {
|
||||
postToStats(action, originalUrl, ip, null, null, error.response.data.error.messsage);
|
||||
res.status(error.response.status).send(error.response.data.error.message);
|
||||
} else if (error.code === 'ECONNREFUSED') {
|
||||
postToStats(action, originalUrl, ip, null, null, 'Connection refused. The daemon may not be running.');
|
||||
res.status(503).send('Connection refused. The daemon may not be running.');
|
||||
} else if (error.message) {
|
||||
postToStats(action, originalUrl, ip, null, null, error);
|
||||
res.status(400).send(error.message);
|
||||
} else {
|
||||
postToStats(action, originalUrl, ip, null, null, error);
|
||||
res.status(400).send(error);
|
||||
}
|
||||
},
|
||||
handlePublishError (error) {
|
||||
logger.error('Publish Error:', error);
|
||||
logger.error('Publish Error:', error.message);
|
||||
if (error.code === 'ECONNREFUSED') {
|
||||
return 'Connection refused. The daemon may not be running.';
|
||||
} else if (error.response.data.error) {
|
||||
|
|
|
@ -115,7 +115,7 @@ module.exports = {
|
|||
}
|
||||
})
|
||||
.catch(error => {
|
||||
logger.error('Lbrynet Error:', error);
|
||||
logger.error('Lbrynet Error:', error.message);
|
||||
resolve('/home/lbry/Downloads/');
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue