diff --git a/src/app/guards/authentication.guard.ts b/src/app/guards/authentication.guard.ts
index 2f10ffe74f3763fb9360f013ec6f088ca97c9143..4a1f4551a0d3194f0e8ae03c11a5d08aaaf6f755 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>;