From 21ad622c10712ae36fb0c5e1519fc3ecba6341ae Mon Sep 17 00:00:00 2001 From: Nicolai Ort Date: Sat, 5 Dec 2020 18:49:59 +0100 Subject: [PATCH] Removed console logs ref #11 --- src/controllers/AuthController.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/controllers/AuthController.ts b/src/controllers/AuthController.ts index 435f3ca..00380cb 100644 --- a/src/controllers/AuthController.ts +++ b/src/controllers/AuthController.ts @@ -25,7 +25,6 @@ export class AuthController { let auth; try { auth = await createAuth.toAuth(); - console.log(auth); } catch (error) { return error; } @@ -44,7 +43,6 @@ export class AuthController { let logout; try { logout = await handleLogout.logout() - console.log(logout); } catch (error) { return error; } @@ -62,7 +60,6 @@ export class AuthController { let auth; try { auth = await refreshAuth.toAuth(); - console.log(auth); } catch (error) { return error; }