This is an automated email from the ASF dual-hosted git repository.
liubao pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/servicecomb-java-chassis.git
The following commit(s) were added to refs/heads/master by this push:
new 4b4075384 [#4808] fixed log level error cause exception stack cannot
be output problem (#4809)
4b4075384 is described below
commit 4b40753847e2652e37dea898fc36068e6586f4fd
Author: Alex <[email protected]>
AuthorDate: Fri May 16 16:53:08 2025 +0800
[#4808] fixed log level error cause exception stack cannot be output
problem (#4809)
---
.../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 b9f4b34e0..26dcb6aab 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)
);
}).build();