This is an automated email from the ASF dual-hosted git repository.
ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-logging.git
The following commit(s) were added to refs/heads/master by this push:
new 07452cc fix LogLevel (#416)
07452cc is described below
commit 07452cca430f2deb176571b41e841f44839c8f64
Author: holgergrote <[email protected]>
AuthorDate: Wed Mar 4 19:10:44 2026 +0100
fix LogLevel (#416)
---
src/main/java/org/apache/commons/logging/impl/Slf4jLogFactory.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/main/java/org/apache/commons/logging/impl/Slf4jLogFactory.java
b/src/main/java/org/apache/commons/logging/impl/Slf4jLogFactory.java
index d341de5..0fae839 100644
--- a/src/main/java/org/apache/commons/logging/impl/Slf4jLogFactory.java
+++ b/src/main/java/org/apache/commons/logging/impl/Slf4jLogFactory.java
@@ -171,7 +171,7 @@ public final class Slf4jLogFactory extends LogFactory {
@Override
public void error(final Object message, final Throwable t) {
- logger.debug(MARKER, String.valueOf(message), t);
+ logger.error(MARKER, String.valueOf(message), t);
}
@Override