CLOUDSTACK-8647: string formatting

This commit is contained in:
Rajani Karuturi 2015-09-01 14:29:40 +05:30
parent ca8b37535a
commit 26fea34d16

View File

@ -202,7 +202,7 @@ public class LdapManagerImpl implements LdapManager, LdapValidator {
return _ldapUserManagerFactory.getInstance(_ldapConfiguration.getLdapProvider()).getUser(escapedUsername, type, name, context);
} catch (NamingException | IOException e) {
s_logger.debug("ldap Exception: ",e);
throw new NoLdapUserMatchingQueryException("No Ldap User found for username: "+username + "name: " + name + "of type" + type);
throw new NoLdapUserMatchingQueryException("No Ldap User found for username: "+username + "name: " + name + "of type: " + type);
} finally {
closeContext(context);
}