Change info message position

main
Sam Free5ide 2021-10-30 23:15:11 +03:00
parent 408b002681
commit 482b49ef9e
No known key found for this signature in database
GPG Key ID: 9DB63BAC7ED736F9
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,6 @@ class CMEModule:
self.server = None
if module_options and 'SERVER' in module_options:
self.server = module_options['SERVER']
self.context.log.highlight('Using PKI Enrollment Server: {}'.format(self.server))
def on_login(self, context, connection):
'''
@ -35,6 +34,7 @@ class CMEModule:
search_filter = '(objectClass=pKIEnrollmentService)'
else:
search_filter = '(distinguishedName=CN={},CN=Enrollment Services,CN=Public Key Services,CN=Services,CN=Configuration,'.format(self.server)
self.context.log.highlight('Using PKI Enrollment Server: {}'.format(self.server))
context.log.debug("Starting LDAP search with search filter '{}'".format(search_filter))