diff options
| author | Georgios Andreadis <g.andreadis@student.tudelft.nl> | 2017-09-15 12:53:26 +0200 |
|---|---|---|
| committer | Georgios Andreadis <g.andreadis@student.tudelft.nl> | 2017-09-23 10:06:03 +0200 |
| commit | a1d95b3685cffb6a9344d0d1e5505dd391193f16 (patch) | |
| tree | 42851ec0726881dd9f82a3ea12a7987324a68ef8 /src/sagas/users.js | |
| parent | f604406453f95c82c3e5e4294a51245661868bbe (diff) | |
Implement experiment list and add
Diffstat (limited to 'src/sagas/users.js')
| -rw-r--r-- | src/sagas/users.js | 4 |
1 files changed, 2 insertions, 2 deletions
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); } } |
