adelapena commented on code in PR #2492:
URL: https://github.com/apache/cassandra/pull/2492#discussion_r1266730573
##########
src/java/org/apache/cassandra/index/sai/StorageAttachedIndexBuilder.java:
##########
@@ -99,7 +99,8 @@ public class StorageAttachedIndexBuilder extends
SecondaryIndexBuilder
@Override
public void build()
{
- logger.debug(logMessage("Starting full index build"));
+ logger.debug(logMessage(String.format("Starting %s %s index build...",
isInitialBuild ? "initial" : "non-initial", isFullRebuild ? "full" :
"partial")));
Review Comment:
Nit: can we break the long line?
```suggestion
logger.debug(logMessage(String.format("Starting %s %s index
build...",
isInitialBuild ? "initial" :
"non-initial",
isFullRebuild ? "full" :
"partial")));
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]