summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2016-03-12 19:12:27 -0500
committerFrederic Guillot <fred@kanboard.net>2016-03-12 19:12:27 -0500
commitca69fc0be7c48eb7643ab0ae2114ac0be32fe662 (patch)
treefd3dbb325c64a1c56e2a63298d6b0ca1256e0374
parent718517e7b25afef749c26c5ea91a163448a759ab (diff)
Added logging message for API authentication failure
-rw-r--r--app/Api/Auth.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/app/Api/Auth.php b/app/Api/Auth.php
index c7c5298c..6c6e1ebe 100644
--- a/app/Api/Auth.php
+++ b/app/Api/Auth.php
@@ -31,6 +31,7 @@ class Auth extends Base
} elseif ($this->isAppAuthenticated($username, $password)) {
$this->checkProcedurePermission(false, $method);
} else {
+ $this->logger->error('API authentication failure for '.$username);
throw new AuthenticationFailure('Wrong credentials');
}
}