From 58cfeeb1be010431e8dfded415c8b019df0d953f Mon Sep 17 00:00:00 2001 From: Taras Machyshyn Date: Mon, 16 Mar 2015 15:51:43 +0200 Subject: [PATCH] Removed unnecessary debug message --- application/Espo/Core/Utils/Auth.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/application/Espo/Core/Utils/Auth.php b/application/Espo/Core/Utils/Auth.php index 97420983fa..bec60398d1 100644 --- a/application/Espo/Core/Utils/Auth.php +++ b/application/Espo/Core/Utils/Auth.php @@ -64,8 +64,6 @@ class Auth public function login($username, $password) { - $GLOBALS['log']->debug('AUTH: Try to authenticate'); - $entityManager = $this->entityManager; $authToken = $entityManager->getRepository('AuthToken')->where(array('token' => $password))->findOne(); @@ -79,7 +77,6 @@ class Auth } $entityManager->setUser($user); $this->container->setUser($user); - $GLOBALS['log']->debug('AUTH: Result of authenticate is [true]'); if (!$authToken) { $authToken = $entityManager->getEntity('AuthToken');