From 26fea34d169403315cbd4d80d37b9fa948cc2868 Mon Sep 17 00:00:00 2001 From: Rajani Karuturi Date: Tue, 1 Sep 2015 14:29:40 +0530 Subject: [PATCH] CLOUDSTACK-8647: string formatting --- .../ldap/src/org/apache/cloudstack/ldap/LdapManagerImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/user-authenticators/ldap/src/org/apache/cloudstack/ldap/LdapManagerImpl.java b/plugins/user-authenticators/ldap/src/org/apache/cloudstack/ldap/LdapManagerImpl.java index 563c0535541..3fd928225fc 100644 --- a/plugins/user-authenticators/ldap/src/org/apache/cloudstack/ldap/LdapManagerImpl.java +++ b/plugins/user-authenticators/ldap/src/org/apache/cloudstack/ldap/LdapManagerImpl.java @@ -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); }