diff options
author | alecpl <alec@alec.pl> | 2012-01-16 11:17:35 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2012-01-16 11:17:35 +0000 |
commit | 8764b6ecf0c8d1b0646915a8139cdf6bbac2ca14 (patch) | |
tree | aedc3f06301be776862e7e58577ee44ce1a16314 /program/include/rcube_ldap.php | |
parent | e493c842a5d5915e95a22df9bc824ef786915cca (diff) |
- Add addressbook name to debug output (#1488304)
Diffstat (limited to 'program/include/rcube_ldap.php')
-rw-r--r-- | program/include/rcube_ldap.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/include/rcube_ldap.php b/program/include/rcube_ldap.php index 2497138eb..7b33655e9 100644 --- a/program/include/rcube_ldap.php +++ b/program/include/rcube_ldap.php @@ -176,7 +176,7 @@ class rcube_ldap extends rcube_addressbook $host = idn_to_ascii(rcube_parse_host($host)); $hostname = $host.($this->prop['port'] ? ':'.$this->prop['port'] : ''); - $this->_debug("C: Connect [$hostname]"); + $this->_debug("C: Connect [$hostname] [{$this->prop['name']}]"); if ($lc = @ldap_connect($host, $this->prop['port'])) { |