Skip to content

Commit

Permalink
fix log
Browse files Browse the repository at this point in the history
  • Loading branch information
junwen12221 committed Jun 4, 2019
1 parent 8369ddf commit bf70d11
Show file tree
Hide file tree
Showing 2 changed files with 310 additions and 307 deletions.
2 changes: 1 addition & 1 deletion src/main/java/io/mycat/net/FrontendConnection.java
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ public boolean canResponse() {
long resId = this.responseSqlId.get();
if(this.executeSqlId > resId) {
boolean t = this.responseSqlId.compareAndSet(resId, this.executeSqlId);
if(t && LOGGER.isDebugEnabled()) {
if(false) {
StackTraceElement stack[] = Thread.currentThread().getStackTrace();
StringBuilder sb = new StringBuilder();
for(int i=0;i<stack.length;i++){
Expand Down
Loading

0 comments on commit bf70d11

Please sign in to comment.