diff options
Diffstat (limited to 'lib/Auth.php')
-rw-r--r-- | lib/Auth.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/Auth.php b/lib/Auth.php index 549e046..6129bec 100644 --- a/lib/Auth.php +++ b/lib/Auth.php @@ -110,8 +110,7 @@ class Auth { */ public function authenticate($username, $password) { - // TODO: Log authentication request. - //console("Authentication request for $username"); + Log::info("Authentication request for $username"); if (strpos($username, '@')) { // Case-sensitivity does not matter for strstr() on '@', which |