Skip to content

Commit ce2ab33

Browse files
author
Vladimir Kotal
committed
fix ordering
1 parent 7d127c9 commit ce2ab33

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugins/src/main/java/opengrok/auth/plugin/ldap/LdapFacade.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ private <T> LdapSearchResult<T> lookup(String dn, String filter, String[] attrib
381381
return lookup(dn, filter, attributes, mapper, fail + 1);
382382
} catch (NamingException ex) {
383383
LOGGER.log(Level.SEVERE, String.format("An arbitrary LDAP error occurred on server %s " +
384-
"when searching for '%s'", getSearchDescription(dn, filter, attributes), server), ex);
384+
"when searching for '%s'", server, getSearchDescription(dn, filter, attributes)), ex);
385385
closeActualServer();
386386
actualServer = getNextServer();
387387
return lookup(dn, filter, attributes, mapper, fail + 1);

0 commit comments

Comments
 (0)