Skip to content

Commit

Permalink
add log
Browse files Browse the repository at this point in the history
  • Loading branch information
udpatil committed Nov 16, 2023
1 parent 744428f commit 247cac3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tasks/scheduler.go
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,8 @@ func (s *scheduler) findConflicts(task *deliverTxTask) (bool, []int) {
for sk, mv := range s.multiVersionStores {
ok, mvConflicts := mv.ValidateTransactionState(task.Index)
if !ok {
task.Ctx.Logger().Info("Validating MVS", "idx", task.Index, "storeKey", sk.Name(), "conflicts", mvConflicts, "readset", mv.GetReadset(task.Index))
task.Ctx.Logger().Info("Validating MVS", "idx", task.Index, "storeKey", sk.Name(), "conflicts", mvConflicts, "readset", mv.GetReadset(task.Index), "writesetKeys",
mv.GetAllWritesetKeys())
}
for _, c := range mvConflicts {
if _, ok := uniq[c]; !ok {
Expand Down

0 comments on commit 247cac3

Please sign in to comment.