This is an automated email from the ASF dual-hosted git repository.
liubao pushed a commit to branch 2.8.x
in repository https://gitbox.apache.org/repos/asf/servicecomb-java-chassis.git
The following commit(s) were added to refs/heads/2.8.x by this push:
new 556145e89 [#4808] fixed log level error cause exception stack cannot
be output problem (#4810)
556145e89 is described below
commit 556145e89e445b49de971ed6828b39c657239407
Author: Alex <[email protected]>
AuthorDate: Fri May 16 16:52:49 2025 +0800
[#4808] fixed log level error cause exception stack cannot be output
problem (#4810)
---
.../servicecomb/foundation/vertx/client/http/HttpClientPoolFactory.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/foundations/foundation-vertx/src/main/java/org/apache/servicecomb/foundation/vertx/client/http/HttpClientPoolFactory.java
b/foundations/foundation-vertx/src/main/java/org/apache/servicecomb/foundation/vertx/client/http/HttpClientPoolFactory.java
index c8752949d..64445db18 100644
---
a/foundations/foundation-vertx/src/main/java/org/apache/servicecomb/foundation/vertx/client/http/HttpClientPoolFactory.java
+++
b/foundations/foundation-vertx/src/main/java/org/apache/servicecomb/foundation/vertx/client/http/HttpClientPoolFactory.java
@@ -46,7 +46,7 @@ public class HttpClientPoolFactory implements
ClientPoolFactory<HttpClientWithCo
connection.localAddress(), connection.remoteAddress())
);
connection.exceptionHandler(e ->
- LOGGER.info("http connection exception, local:{}, remote:{}.",
+ LOGGER.error("http connection exception, local:{}, remote:{}.",
connection.localAddress(), connection.remoteAddress(), e)
);
});