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

remm pushed a commit to branch 9.0.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git


The following commit(s) were added to refs/heads/9.0.x by this push:
     new 2cdd2d40fc Dial down logging level
2cdd2d40fc is described below

commit 2cdd2d40fc832e9c07c7179cf42165f068bc89c7
Author: remm <[email protected]>
AuthorDate: Mon Sep 1 10:22:44 2025 +0200

    Dial down logging level
---
 .../apache/tomcat/jdbc/naming/GenericNamingResourcesFactory.java    | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git 
a/modules/jdbc-pool/src/main/java/org/apache/tomcat/jdbc/naming/GenericNamingResourcesFactory.java
 
b/modules/jdbc-pool/src/main/java/org/apache/tomcat/jdbc/naming/GenericNamingResourcesFactory.java
index 837fc5611a..c3a5d4db0c 100644
--- 
a/modules/jdbc-pool/src/main/java/org/apache/tomcat/jdbc/naming/GenericNamingResourcesFactory.java
+++ 
b/modules/jdbc-pool/src/main/java/org/apache/tomcat/jdbc/naming/GenericNamingResourcesFactory.java
@@ -75,7 +75,7 @@ public class GenericNamingResourcesFactory implements 
ObjectFactory {
             if (setProperty(o, param, value)) {
 
             } else {
-                log.debug("Property not configured["+param+"]. No setter found 
on["+o+"].");
+                log.debug("Property not configured[" + param + "]. No setter 
found on[" + type + "].");
             }
         }
         return o;
@@ -83,8 +83,8 @@ public class GenericNamingResourcesFactory implements 
ObjectFactory {
 
     @SuppressWarnings("null") // setPropertyMethodVoid can't be null when used
     private static boolean setProperty(Object o, String name, String value) {
-        if (log.isDebugEnabled()) {
-            log.debug("IntrospectionUtils: setProperty(" +
+        if (log.isTraceEnabled()) {
+            log.trace("IntrospectionUtils: setProperty(" +
                     o.getClass() + " " + name + "=" + value + ")");
         }
 


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to