diff --git a/src/app/core/auth/auth.interceptor.ts b/src/app/core/auth/auth.interceptor.ts index 5d267743e6..237f6e0820 100644 --- a/src/app/core/auth/auth.interceptor.ts +++ b/src/app/core/auth/auth.interceptor.ts @@ -186,7 +186,6 @@ export class AuthInterceptor implements HttpInterceptor { // It's a success Login/Logout response let authRes: HttpResponse; if (this.isLoginResponse(response)) { - console.log('auth.interceptor passes success login response from backend with token: ', response.headers.get('authorization')); // login successfully const newToken = response.headers.get('authorization'); authRes = response.clone({body: this.makeAuthStatusObject(true, newToken)});