summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPetr Viktorin <pviktori@redhat.com>2013-11-21 13:57:47 +0100
committerMartin Kosek <mkosek@redhat.com>2013-12-06 12:58:50 +0100
commita9a7976ca8452d363c3daff08ac5734a598c892d (patch)
tree2fb9d47825def49d1cdbe44f115a9c36a15741de
parent98f4c22267491bb8adceddcbd7ac4865b737e70f (diff)
downloadfreeipa-a9a7976ca8452d363c3daff08ac5734a598c892d.tar.gz
freeipa-a9a7976ca8452d363c3daff08ac5734a598c892d.tar.xz
freeipa-a9a7976ca8452d363c3daff08ac5734a598c892d.zip
test_integration: Log external hostname in Host.ldap_connect
This may make debugging easier if the address is set incorrectly.
-rw-r--r--ipatests/test_integration/host.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipatests/test_integration/host.py b/ipatests/test_integration/host.py
index be45a033..507e19ed 100644
--- a/ipatests/test_integration/host.py
+++ b/ipatests/test_integration/host.py
@@ -160,7 +160,7 @@ class BaseHost(object):
def ldap_connect(self):
"""Return an LDAPClient authenticated to this host as directory manager
"""
- self.log.info('Connecting to LDAP')
+ self.log.info('Connecting to LDAP at %s', self.external_hostname)
ldap = IPAdmin(self.external_hostname)
binddn = self.config.dirman_dn
self.log.info('LDAP bind as %s' % binddn)