Skip to content

Commit

Permalink
恢复取消心跳提醒为warn
Browse files Browse the repository at this point in the history
  • Loading branch information
zhupengfeivip committed Dec 10, 2024
1 parent 7673041 commit 6f79d59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/src/main/java/org/tio/client/TioClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -477,7 +477,7 @@ private void startHeartbeatTask() {
public void run() {
while (!tioClientConfig.isStopped()) {
if (tioClientConfig.heartbeatTimeout <= 0) {
// log.warn("用户取消了框架层面的心跳定时发送功能,请用户自己去完成心跳机制");
log.warn("用户取消了框架层面的心跳定时发送功能,请用户自己去完成心跳机制");
break;
}
SetWithLock<ChannelContext> setWithLock = tioClientConfig.connecteds;
Expand Down

0 comments on commit 6f79d59

Please sign in to comment.