Remove unnecessary logging.

This commit is contained in:
Spencer Ofwiti 2021-04-17 14:37:59 +03:00
parent 8c08607a3a
commit a9ad7012d8

View File

@ -73,7 +73,6 @@ export class AuthService {
getChallenge(password: string): void { getChallenge(password: string): void {
fetch(environment.cicMetaUrl).then(async response => { fetch(environment.cicMetaUrl).then(async response => {
console.log(response);
if (response.status === 401) { if (response.status === 401) {
const authHeader = response.headers.get('WWW-Authenticate'); const authHeader = response.headers.get('WWW-Authenticate');
const o = hobaParseChallengeHeader(authHeader); const o = hobaParseChallengeHeader(authHeader);