mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

Gaetan Boismal
19.00.2015 2fc99ce898cd2b4e74966cdb2be633974a338763
OPENDJ-2348 Ignore exception catch which pollutes

PR-96
Do not log the ClassNotFoundException because it just means that
default values are not overrode and it pollute the logs a lot.
1 files modified
4 ■■■■ changed files
opendj-server-legacy/src/main/java/org/opends/quicksetup/util/Utils.java 4 ●●●● patch | view | raw | blame | history
opendj-server-legacy/src/main/java/org/opends/quicksetup/util/Utils.java
@@ -1414,9 +1414,9 @@
    }
    catch (Exception ex)
    {
      logger.error(LocalizableMessage.raw(ex.getMessage()), ex);
      return defaultValue;
      //do nothing.
    }
    return defaultValue;
  }
  /**