mirror of https://github.com/apache/cassandra
Fix debug log format
This commit is contained in:
parent
2714056562
commit
38e5cf73d6
|
|
@ -588,8 +588,8 @@ public class StorageService implements IEndpointStateChangeSubscriber, StorageSe
|
|||
// as well as avoiding the nonsensical state of trying to stream from cluster with no active peers.
|
||||
Token<?> token;
|
||||
InetAddress current = null;
|
||||
logger_.debug("Bootstrap variables: %s %s %s %s",
|
||||
new Object[] {DatabaseDescriptor.isAutoBootstrap(), SystemTable.bootstrapInProgress(), SystemTable.bootstrapComplete(), schemaPresent});
|
||||
logger_.debug(String.format("Bootstrap variables: %s %s %s %s",
|
||||
DatabaseDescriptor.isAutoBootstrap(), SystemTable.bootstrapInProgress(), SystemTable.bootstrapComplete(), schemaPresent));
|
||||
if (DatabaseDescriptor.isAutoBootstrap()
|
||||
&& (SystemTable.bootstrapInProgress() || (!SystemTable.bootstrapComplete() && schemaPresent)))
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue