From a1d95b3685cffb6a9344d0d1e5505dd391193f16 Mon Sep 17 00:00:00 2001 From: Georgios Andreadis Date: Fri, 15 Sep 2017 12:53:26 +0200 Subject: Implement experiment list and add --- src/sagas/users.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/sagas/users.js') diff --git a/src/sagas/users.js b/src/sagas/users.js index 5f9bffa1..f1ee9823 100644 --- a/src/sagas/users.js +++ b/src/sagas/users.js @@ -20,7 +20,7 @@ export function* onFetchLoggedInUser(action) { yield put(logInSucceeded(Object.assign({userId}, action.payload))); } catch (error) { - console.log(error); + console.error(error); } } @@ -41,6 +41,6 @@ export function* onFetchAuthorizationsOfCurrentUser(action) { yield put(fetchAuthorizationsOfCurrentUserSucceeded(authorizationIds)); } catch (error) { - console.log(error); + console.error(error); } } -- cgit v1.2.3