updated logger.error usage format
This commit is contained in:
parent
ebff2cf62b
commit
fd382fcd9f
2 changed files with 6 additions and 5 deletions
|
@ -3,7 +3,7 @@ const { postToStats } = require('../controllers/statsController.js');
|
|||
|
||||
module.exports = {
|
||||
handleRequestError (action, originalUrl, ip, error, res) {
|
||||
logger.error(`Request Error >> ${error.message}`, error);
|
||||
logger.error('Request Error:', 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);
|
||||
|
@ -19,7 +19,7 @@ module.exports = {
|
|||
}
|
||||
},
|
||||
handlePublishError (error) {
|
||||
logger.error(`Publish Error >> ${error.message}`, error);
|
||||
logger.error('Publish Error:', error);
|
||||
if (error.code === 'ECONNREFUSED') {
|
||||
return 'Connection refused. The daemon may not be running.';
|
||||
} else if (error.response.data.error) {
|
||||
|
|
|
@ -110,11 +110,12 @@ module.exports = {
|
|||
if (data.result) {
|
||||
resolve(data.result.download_directory);
|
||||
} else {
|
||||
reject(new Error('Successfully connected to lbry daemon, but unable to retrieve the download directory.'));
|
||||
// reject(new Error('Successfully connected to lbry daemon, but unable to retrieve the download directory.'));
|
||||
return new Error('Successfully connected to lbry daemon, but unable to retrieve the download directory.');
|
||||
}
|
||||
})
|
||||
.catch((error) => {
|
||||
logger.error('Unable to retrieve daemon download directory', error);
|
||||
.catch(error => {
|
||||
logger.error('Lbrynet Error:', error);
|
||||
resolve('/home/lbry/Downloads/');
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue