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

abobrov
28.20.2008 0c69096b9e9fe5265c4a62a75072c9177ec28253
- [Issue 2232] Log a message when taking the backend offline:
Log an informational message upon JEB finalization.
2 files modified
5 ■■■■■ changed files
opendj-sdk/opends/src/messages/messages/backend.properties 1 ●●●● patch | view | raw | blame | history
opendj-sdk/opends/src/server/org/opends/server/backends/jeb/BackendImpl.java 4 ●●●● patch | view | raw | blame | history
opendj-sdk/opends/src/messages/messages/backend.properties
@@ -1033,3 +1033,4 @@
 support for the hasSubordinates operational attribute
MILD_ERR_NUM_SUBORDINATES_NOT_SUPPORTED_369=This backend does not provide \
 support for the numSubordinates operational attribute
NOTICE_BACKEND_OFFLINE_370=The backend %s is now taken offline
opendj-sdk/opends/src/server/org/opends/server/backends/jeb/BackendImpl.java
@@ -436,6 +436,10 @@
    // Make sure the thread counts are zero for next initialization.
    threadTotalCount.set(0);
    threadWriteCount.set(0);
    // Log an informational message.
    Message message = NOTE_BACKEND_OFFLINE.get(cfg.getBackendId());
    logError(message);
  }