From 53a66ff40ecb6a06082ef84312d22af4f9190280 Mon Sep 17 00:00:00 2001 From: Peter Amstutz Date: Wed, 15 May 2019 10:32:56 -0400 Subject: [PATCH] Remove debug logging refs #15064 Arvados-DCO-1.1-Signed-off-by: Peter Amstutz --- src/store/auth/auth-action.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/store/auth/auth-action.ts b/src/store/auth/auth-action.ts index 7ebbbaa6..c088418a 100644 --- a/src/store/auth/auth-action.ts +++ b/src/store/auth/auth-action.ts @@ -62,8 +62,6 @@ export const initAuth = (config: Config) => (dispatch: Dispatch, getState: () => dispatch(getUserDetails()).then((user: User) => { dispatch(authActions.INIT({ user, token })); }).catch((err: AxiosError) => { - console.log("error"); - console.log(err); if (err.response) { // Bad token if (err.response.status === 401) { -- 2.30.2