Skip to content

Commit

Permalink
remove logs
Browse files Browse the repository at this point in the history
  • Loading branch information
vernedeng committed Nov 26, 2024
1 parent ebec0c4 commit a60ce3d
Showing 1 changed file with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -78,11 +78,7 @@ public void sendDirtyMessage(DirtyMessageWrapper messageWrapper) throws Interrup
}

public boolean sendDirtyMessageAsync(DirtyMessageWrapper messageWrapper) {
boolean result = dirtyDataQueue.offer(messageWrapper);
if (!result) {
log.warn("send dirty message async queue is full, you can increase maxCallbackSize");
}
return result;
return dirtyDataQueue.offer(messageWrapper);
}

private void doSendDirtyMessage() {
Expand Down

0 comments on commit a60ce3d

Please sign in to comment.