From 64706f6c2da651def57f5482a00432f76c14b3a4 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Tom=20K=C3=A4sler?= <tom.kaesler@mni.thm.de>
Date: Thu, 26 Jul 2018 13:08:22 +0200
Subject: [PATCH] remove console stmt

---
 src/app/guards/authentication.guard.ts | 1 -
 1 file changed, 1 deletion(-)

diff --git a/src/app/guards/authentication.guard.ts b/src/app/guards/authentication.guard.ts
index 2f10ffe74..4a1f4551a 100644
--- a/src/app/guards/authentication.guard.ts
+++ b/src/app/guards/authentication.guard.ts
@@ -19,7 +19,6 @@ export class AuthenticationGuard implements CanActivate {
               state: RouterStateSnapshot): boolean {
     // Get active user
     const user: User = this.authenticationService.getUser();
-		console.log(user.role);
     // Get roles having access to this route
     // undefined if every logged in user should have access regardless of its role
     const requiredRoles = next.data['roles'] as Array<UserRole>;
-- 
GitLab