This is an automated email from the ASF dual-hosted git repository.
remm pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/main by this push:
new b3eaf23809 Dial down logging level
b3eaf23809 is described below
commit b3eaf238092b643b4bcd59fbf9d16671fe696fe1
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]