This is an automated email from the ASF dual-hosted git repository.

alexey pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/kudu.git

commit ae8498e8a7fa8d034c8e607fe729119740c6bce5
Author: Alexey Serbin <[email protected]>
AuthorDate: Mon Nov 3 13:23:25 2025 -0800

    [java] log information on random seed in DEBUG level
    
    Outputting information on the random utilities seed isn't something
    needed in day-to-day test runs, so this patch changes the log level
    for the information from INFO to DEBUG.
    
    There are no functional modifications in this changelist.
    
    Change-Id: I972d2fe59b65ecfa6c433dc782cd6c000485b470
    Reviewed-on: http://gerrit.cloudera.org:8080/23621
    Tested-by: Alexey Serbin <[email protected]>
    Reviewed-by: Abhishek Chennaka <[email protected]>
---
 .../kudu-test-utils/src/main/java/org/apache/kudu/test/RandomUtils.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/java/kudu-test-utils/src/main/java/org/apache/kudu/test/RandomUtils.java 
b/java/kudu-test-utils/src/main/java/org/apache/kudu/test/RandomUtils.java
index 48885392f..d8684d961 100644
--- a/java/kudu-test-utils/src/main/java/org/apache/kudu/test/RandomUtils.java
+++ b/java/kudu-test-utils/src/main/java/org/apache/kudu/test/RandomUtils.java
@@ -46,7 +46,7 @@ public class RandomUtils {
       LOG.info("System property {} is defined. Overriding random seed: {}",
           TEST_RANDOM_SEED_PROP, seed);
     }
-    LOG.info("Using random seed: {}", seed);
+    LOG.debug("Using random seed: {}", seed);
     return new Random(seed);
   }
 

Reply via email to