Skip to content

Commit

Permalink
0002270: Log when an initial load or reverse initial load is queued up
Browse files Browse the repository at this point in the history
  • Loading branch information
chenson42 committed Apr 15, 2015
1 parent d8cb52f commit d72e95f
Showing 1 changed file with 6 additions and 0 deletions.
Expand Up @@ -330,6 +330,12 @@ public void insertReloadEvents(Node targetNode, boolean reverse) {
synchronized (engine.getTriggerRouterService()) {
engine.getClusterService().lock(ClusterConstants.SYNCTRIGGERS);

if (!reverse) {
log.info("Queueing up an initial load to " + targetNode.getNodeId());
} else {
log.info("Queueing up a reverse initial load to " + targetNode.getNodeId());
}

/*
* Outgoing data events are pointless because we are
* reloading all data
Expand Down

0 comments on commit d72e95f

Please sign in to comment.