From 1339b89e282a4e00f0d2ca30ba014336c00c14e0 Mon Sep 17 00:00:00 2001 From: kalyan-plivo <49232630+kalyan-plivo@users.noreply.github.com> Date: Sun, 20 Dec 2020 12:19:41 +0530 Subject: [PATCH] added the error --- lib/rest/axios.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/rest/axios.js b/lib/rest/axios.js index 958f698..e45439f 100644 --- a/lib/rest/axios.js +++ b/lib/rest/axios.js @@ -231,7 +231,7 @@ export function Axios(config) { .catch(function (error) { // handle error // console.log(error); - reject(error); + reject(error.stack); }) }); };