mirror of https://github.com/apache/cassandra
promote a couple streaming debug messages to info. patch by jbellis for CASSANDRA-592
git-svn-id: https://svn.apache.org/repos/asf/incubator/cassandra/trunk@888022 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
b6aa09fa14
commit
08479960ee
|
|
@ -112,15 +112,13 @@ public class Streaming
|
|||
|
||||
if (streamContexts.length > 0)
|
||||
{
|
||||
if (logger.isDebugEnabled())
|
||||
logger.debug("Waiting for transfer to " + target + " to complete");
|
||||
logger.info("Waiting for transfer to " + target + " to complete");
|
||||
StreamManager.instance(target).waitForStreamCompletion();
|
||||
for (SSTableReader sstable : sstables)
|
||||
{
|
||||
sstable.markCompacted();
|
||||
}
|
||||
if (logger.isDebugEnabled())
|
||||
logger.debug("Done with transfer to " + target);
|
||||
logger.info("Done with transfer to " + target);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -180,7 +180,7 @@ public final class StorageService implements IEndPointStateChangeSubscriber, Sto
|
|||
SystemTable.setBootstrapped(true);
|
||||
setToken(getLocalToken());
|
||||
Gossiper.instance().addApplicationState(StorageService.STATE_NORMAL, new ApplicationState(partitioner_.getTokenFactory().toString(getLocalToken())));
|
||||
logger_.info("Bootstrap completed! Now serving reads.");
|
||||
logger_.info("Bootstrap/move completed! Now serving reads.");
|
||||
}
|
||||
|
||||
/** This method updates the local token on disk */
|
||||
|
|
|
|||
Loading…
Reference in New Issue