diff options
author | Arthur Schiwon <blizzz@owncloud.com> | 2016-03-05 00:18:34 +0100 |
---|---|---|
committer | Arthur Schiwon <blizzz@owncloud.com> | 2016-03-05 00:18:34 +0100 |
commit | 5d3183afcdeb5cde648a40ba4ef0b2389c20d90e (patch) | |
tree | c947701355108b8a274a162d8e61fd37a4757ef0 | |
parent | fe86e0c2f89f88a597c0ce4c45565be1a63f2bec (diff) | |
download | nextcloud-server-5d3183afcdeb5cde648a40ba4ef0b2389c20d90e.tar.gz nextcloud-server-5d3183afcdeb5cde648a40ba4ef0b2389c20d90e.zip |
improve log output when no LDAP user was found on login attempt
-rw-r--r-- | apps/user_ldap/lib/connection.php | 2 | ||||
-rw-r--r-- | apps/user_ldap/user_ldap.php | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/apps/user_ldap/lib/connection.php b/apps/user_ldap/lib/connection.php index fc6df5fc602..d5b4936b68b 100644 --- a/apps/user_ldap/lib/connection.php +++ b/apps/user_ldap/lib/connection.php @@ -34,6 +34,8 @@ use OC\ServerNotAvailableException; * magic properties (incomplete) * responsible for LDAP connections in context with the provided configuration * + * @property string ldapHost + * @property string ldapPort holds the port number * @property string ldapUserFilter * @property string ldapUserDisplayName * @property string ldapUserDisplayName2 diff --git a/apps/user_ldap/user_ldap.php b/apps/user_ldap/user_ldap.php index 865b7e61892..26d3429818f 100644 --- a/apps/user_ldap/user_ldap.php +++ b/apps/user_ldap/user_ldap.php @@ -102,7 +102,8 @@ class USER_LDAP extends BackendUtility implements \OCP\IUserBackend, \OCP\UserIn $attrs = $this->access->userManager->getAttributes(); $users = $this->access->fetchUsersByLoginName($loginName, $attrs, 1); if(count($users) < 1) { - throw new \Exception('No user available for the given login name.'); + throw new \Exception('No user available for the given login name on ' . + $this->access->connection->ldapHost . ':' . $this->access->connection->ldapPort); } return $users[0]; } |