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

Jean-Noel Rouvignac
07.59.2014 6f264162e943a39cab5cb36dd996c7e386c0f59c
OPENDJ-1307 Migrate server ASN1 classes to SDK

LoggingCategoryNames.java:
Added simple categories for SDK packages:
catching up with r10274, r10275, r10278 and r10279 where the SDK logging was changed to use LocalizedLogger instead of raw SLF4J.
1 files modified
19 ■■■■ changed files
opendj3-server-dev/src/server/org/opends/server/loggers/LoggingCategoryNames.java 19 ●●●● patch | view | raw | blame | history
opendj3-server-dev/src/server/org/opends/server/loggers/LoggingCategoryNames.java
@@ -48,8 +48,15 @@
  static
  {
    // catch all categories used when nothing else matches.
    // FIXME catch all does not work with current code.
    // Maybe should we use a trie data structure instead of a NavigableMap?
    // NAMES.put("org.opends", "CORE");
    // NAMES.put("org.forgerock.opendj", "CORE");
    // The category used for messages associated with the core server.
    NAMES.put("org.opends.server.core", "CORE");
    NAMES.put("org.forgerock.opendj.ldap", "CORE");
    // The category used for messages associated with server
    //extensions (e.g., extended operations, SASL mechanisms, password storage
@@ -59,13 +66,12 @@
    // The category used for messages associated with
    // connection and protocol handling (e.g., ASN.1 and LDAP).
    NAMES.put("org.opends.server.protocol", "PROTOCOL");
    NAMES.put("org.forgerock.opendj.ldap.io", "PROTOCOL");
    // The category used for messages associated with
    // configuration handling.
    // The category used for messages associated with configuration handling.
    NAMES.put("org.opends.server.config", "CONFIG");
    // The category used for messages associated with the
    // server loggers.
    // The category used for messages associated with the server loggers.
    NAMES.put("org.opends.server.loggers", "LOG");
    // The category used for messages associated with the
@@ -75,6 +81,11 @@
    // The category used for messages associated with the
    // server schema elements.
    NAMES.put("org.opends.server.schema", "SCHEMA");
    NAMES.put("org.forgerock.opendj.ldap.schema", "SCHEMA");
    // The category used for messages associated with the server controls.
    NAMES.put("org.opends.server.controls", "CONTROLS");
    NAMES.put("org.forgerock.opendj.ldap.controls", "CONTROLS");
    // The category that will be used for messages associated with plugin
    // processing.