removed console logs

This commit is contained in:
Abhinav-grd 2021-03-18 20:48:29 +05:30
parent 3b2ea74a39
commit f6cc73c91b

View file

@ -81,7 +81,7 @@ class SubscriptionService {
const subscription = response.data['subscription']; const subscription = response.data['subscription'];
setData(LS_KEYS.SUBSCRIPTION, subscription); setData(LS_KEYS.SUBSCRIPTION, subscription);
} catch (e) { } catch (e) {
console.log(e); console.error(e);
throw e; throw e;
} }
} }
@ -96,10 +96,9 @@ class SubscriptionService {
} }
); );
const subscription = response.data['subscription']; const subscription = response.data['subscription'];
console.log(subscription);
setData(LS_KEYS.SUBSCRIPTION, subscription); setData(LS_KEYS.SUBSCRIPTION, subscription);
} catch (e) { } catch (e) {
console.log(e); console.error(e);
throw e; throw e;
} }
} }