Skip to content

Commit

Permalink
feat: remove debug logging
Browse files Browse the repository at this point in the history
Signed-off-by: Manan Gupta <[email protected]>
  • Loading branch information
GuptaManan100 committed Nov 28, 2024
1 parent d683b15 commit 98967de
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions go/test/endtoend/transaction/twopc/fuzz/fuzzer_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -339,9 +339,7 @@ func (fz *fuzzer) generateAndExecuteTransaction(threadId int) {

func getUpdateQuery(incrementVal int32, id int) string {
if rand.Intn(2) == 1 {
x := fmt.Sprintf(updateFuzzUpdateMulti, incrementVal, id)
log.Errorf(x)
return x
return fmt.Sprintf(updateFuzzUpdateMulti, incrementVal, id)
}
return fmt.Sprintf(updateFuzzUpdate, incrementVal, id)
}
Expand Down

0 comments on commit 98967de

Please sign in to comment.