smiklosovic commented on code in PR #4596:
URL: https://github.com/apache/cassandra/pull/4596#discussion_r2752177048


##########
src/java/org/apache/cassandra/service/StorageService.java:
##########
@@ -4836,6 +4836,19 @@ public void setColumnIndexCacheSize(int cacheSizeInKB)
         logger.info("Updated column_index_cache_size to {}", cacheSizeInKB);
     }
 
+    @Override
+    public boolean getMispreparedStatementsEnabled()
+    {
+        return DatabaseDescriptor.getMispreparedStatementsEnabled();
+    }
+
+    @Override
+    public void setMispreparedStatementsEnabled(boolean enabled)
+    {
+        DatabaseDescriptor.setMispreparedStatementsEnabled(enabled);
+        logger.info("Updated misprepared_statements_enabled to {}", enabled);

Review Comment:
   why logging



-- 
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]

Reply via email to