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

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


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

commit 8496970fdfc7b932021fef587aabb6ca91d52dca
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 0d02727e87..e407a8fa8f 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