Revision: 7643
http://bigdata.svn.sourceforge.net/bigdata/?rev=7643&view=rev
Author: thompsonbry
Date: 2013-12-13 16:59:23 +0000 (Fri, 13 Dec 2013)
Log Message:
-----------
added log when we *will* run forceRemoveService() as well as when it actually runs.
Modified Paths:
--------------
branches/MGC_1_3_0/bigdata/src/java/com/bigdata/quorum/AbstractQuorum.java
Modified: branches/MGC_1_3_0/bigdata/src/java/com/bigdata/quorum/AbstractQuorum.java
===================================================================
--- branches/MGC_1_3_0/bigdata/src/java/com/bigdata/quorum/AbstractQuorum.java 2013-12-13 16:54:30 UTC (rev 7642)
+++ branches/MGC_1_3_0/bigdata/src/java/com/bigdata/quorum/AbstractQuorum.java 2013-12-13 16:59:23 UTC (rev 7643)
@@ -2349,6 +2349,9 @@
*/
@Override
final public void forceRemoveService(final UUID psid) {
+ if (log.isInfoEnabled())
+ log.info("Will force remove of service" + ": thisService="
+ + serviceId + ", otherServiceId=" + psid);
runActorTask(new ForceRemoveServiceTask(psid));
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|