Skip to content

Commit

Permalink
优化日志输出
Browse files Browse the repository at this point in the history
  • Loading branch information
liuxiaomin committed Jul 19, 2021
1 parent 3acffbd commit b6f976a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mysql_undo_log_manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ func (manager MysqlUndoLogManager) Undo(conn *mysqlConn, xid string, branchID in
exists = true

if State(state.Int32) != Normal {
fmt.Printf("xid %s branch %d, ignore %s undo_log", xid2, branchID2, State(state.Int32).String())
log.Debugf("xid %s branch %d, ignore %s undo_log", xid2, branchID2, State(state.Int32).String())
return nil
}

Expand Down

0 comments on commit b6f976a

Please sign in to comment.