Merge "BUG 2676 : Add more context to the Initiate snapshot capture log message"
authorTom Pantelis <tpanteli@brocade.com>
Fri, 20 Feb 2015 19:18:47 +0000 (19:18 +0000)
committerGerrit Code Review <gerrit@opendaylight.org>
Fri, 20 Feb 2015 19:18:50 +0000 (19:18 +0000)
opendaylight/md-sal/sal-akka-raft/src/main/java/org/opendaylight/controller/cluster/raft/RaftActor.java

index 854ceb23d047fabea219f3861c5f44c0f2afc907..65254f2d6277c34c9773570e5938d8a005ab3015 100644 (file)
@@ -788,7 +788,9 @@ public abstract class RaftActor extends AbstractUntypedPersistentActor {
 
                             dataSizeSinceLastSnapshot = 0;
 
-                            LOG.info("{}: Initiating Snapshot Capture..", persistenceId());
+                            LOG.info("{}: Initiating Snapshot Capture, journalSize = {}, dataSizeForCheck = {}," +
+                                " dataThreshold = {}", persistenceId(), journalSize, dataSizeForCheck, dataThreshold);
+
                             long lastAppliedIndex = -1;
                             long lastAppliedTerm = -1;