added the some error logs

This commit is contained in:
kalyan-plivo 2020-12-21 17:47:03 +05:30 committed by Koushik-Ayila
parent 1339b89e28
commit 5d2868bdef

View file

@ -231,7 +231,7 @@ export function Axios(config) {
.catch(function (error) {
// handle error
// console.log(error);
reject(error.stack);
reject(error.stack + '\n' + JSON.stringify(error.response.data));
})
});
};