Skip to content

Commit 45ce528

Browse files
authored
Merge pull request #82 from evolvedbinary/7.x.x/hotfix/broker-pool-services-manager-logging
[7.x.x] Correct the log destination in the Broker Pool Services Manager
2 parents 004d5dc + f390b69 commit 45ce528

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

exist-core/src/main/java/org/exist/storage/BrokerPoolServicesManager.java

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,18 +33,18 @@
3333
package org.exist.storage;
3434

3535
import net.jcip.annotations.NotThreadSafe;
36+
import org.apache.logging.log4j.LogManager;
37+
import org.apache.logging.log4j.Logger;
3638
import org.exist.storage.txn.Txn;
3739
import org.exist.util.Configuration;
3840
import com.evolvedbinary.j8fu.fsm.AtomicFSM;
3941
import com.evolvedbinary.j8fu.fsm.FSM;
4042

41-
import static com.evolvedbinary.j8fu.fsm.TransitionTable.transitionTable;
42-
import static org.exist.security.UnixStylePermission.LOG;
43-
44-
4543
import java.util.ArrayList;
4644
import java.util.List;
4745

46+
import static com.evolvedbinary.j8fu.fsm.TransitionTable.transitionTable;
47+
4848
/**
4949
* This class simply maintains a list of {@link BrokerPoolService}
5050
* and provides methods to {@BrokerPool} to manage the lifecycle of
@@ -67,6 +67,8 @@
6767
@NotThreadSafe
6868
class BrokerPoolServicesManager {
6969

70+
private static final Logger LOG = LogManager.getLogger(BrokerPoolServicesManager.class);
71+
7072
private enum ManagerState {
7173
REGISTRATION,
7274
CONFIGURATION,

0 commit comments

Comments
 (0)