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