Skip to content

Commit a0d0513

Browse files
authored
optimize: Log args mismatch (apache#6879)
1 parent 4bd9557 commit a0d0513

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

changes/en-us/2.x.md

+3
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ Add changes here for all PR submitted to the 2.x branch.
1919
- [[#6892](https://github.com/apache/incubator-seata/pull/6892)] upgrade npmjs version
2020
- [[#6889](https://github.com/apache/incubator-seata/pull/6889)] Correct word spelling errors
2121
- [[#6898](https://github.com/apache/incubator-seata/pull/6898)] upgrade npmjs version in saga module
22+
- [[#6879](https://github.com/apache/incubator-seata/pull/6879)] fix log argument mismatch issue
2223
- [[#6902](https://github.com/apache/incubator-seata/pull/6900)] optimize readme docs
2324

2425

@@ -38,8 +39,10 @@ Thanks to these contributors for their code commits. Please report an unintended
3839
- [dk2k](https://github.com/dk2k)
3940
- [MaoMaoandSnail](https://github.com/MaoMaoandSnail)
4041
- [yougecn](https://github.com/yougecn)
42+
- [arrrnold17](https://github.com/arrrnold17)
4143
- [xjlgod](https://github.com/xjlgod)
4244
- [PleaseGiveMeTheCoke](https://github.com/PleaseGiveMeTheCoke)
4345

4446

47+
4548
Also, we receive many valuable issues, questions and advices from our community. Thanks for you all.

changes/zh-cn/2.x.md

+4
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,12 @@
1818
- [[#6883](https://github.com/apache/incubator-seata/pull/6874)] 删除代码中无用对象的创建
1919
- [[#6892](https://github.com/apache/incubator-seata/pull/6892)] 升级 npmjs 版本
2020
- [[#6889](https://github.com/apache/incubator-seata/pull/6889)] 修正单词拼写错误
21+
- [[#6898](https://github.com/apache/incubator-seata/pull/6898)] 升级 saga 模块 npmjs 版本
22+
- [[#6879](https://github.com/apache/incubator-seata/pull/6879)] 修复日志参数不匹配问题
2123
- [[#6898](https://github.com/apache/incubator-seata/pull/6898)] 升级 saga 模块 npmjs 版本
2224
- [[#6902](https://github.com/apache/incubator-seata/pull/6900)] 优化 readme 文档
2325

26+
2427
### refactor:
2528

2629

@@ -38,6 +41,7 @@
3841
- [dk2k](https://github.com/dk2k)
3942
- [MaoMaoandSnail](https://github.com/MaoMaoandSnail)
4043
- [yougecn](https://github.com/yougecn)
44+
- [arrrnold17](https://github.com/arrrnold17)
4145
- [xjlgod](https://github.com/xjlgod)
4246
- [PleaseGiveMeTheCoke](https://github.com/PleaseGiveMeTheCoke)
4347

core/src/main/java/org/apache/seata/core/rpc/netty/NettyClientChannelManager.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ void doReconnect(List<String> availList, String transactionServiceGroup) {
243243
failedMap.values().stream().map(Throwable::getMessage).collect(Collectors.toSet()));
244244
} else if (LOGGER.isDebugEnabled()) {
245245
failedMap.forEach((key, value) -> {
246-
LOGGER.error("{} can not connect to {} cause:{} trace information:{}",
246+
LOGGER.error("{} can not connect to {} cause:{} trace information:",
247247
FrameworkErrorCode.NetConnect.getErrCode(), key, value.getMessage(), value);
248248
});
249249
}

0 commit comments

Comments
 (0)