Skip to content

Commit f3f79db

Browse files
author
Vladimir Kotal
committed
communication error should be logged with WARNING
1 parent f814d53 commit f3f79db

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
@@ -374,7 +374,7 @@ private <T> LdapSearchResult<T> lookup(String dn, String filter, String[] attrib
374374
actualServer = getNextServer();
375375
return lookup(dn, filter, attributes, mapper, fail + 1);
376376
} catch (CommunicationException ex) {
377-
LOGGER.log(Level.INFO, String.format("Communication error received on server %s, " +
377+
LOGGER.log(Level.WARNING, String.format("Communication error received on server %s, " +
378378
"reconnecting to next server.", server), ex);
379379
closeActualServer();
380380
actualServer = getNextServer();

0 commit comments

Comments
 (0)