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


##########
src/java/org/apache/cassandra/tracing/Tracing.java:
##########
@@ -110,13 +111,14 @@ public int getTTL()
     static
     {
         Tracing tracing = null;
-        String customTracingClass = 
System.getProperty("cassandra.custom_tracing_class");
+        String customTracingClass = CUSTOM_TRACING_CLASS.getString();
         if (null != customTracingClass)
         {
             try
             {
                 tracing = FBUtilities.construct(customTracingClass, "Tracing");
-                logger.info("Using {} as tracing queries (as requested with 
-Dcassandra.custom_tracing_class)", customTracingClass);
+                logger.info("Using class {} as tracing queries (as requested 
with the {} system property)",

Review Comment:
   imho this log message does not make, grammatically, sense. "Using class XYZ 
as tracing queries"? What kind of sentence is that ... "Using class XYZ to 
trace queries" is maybe better?



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