Remove massive log

This commit is contained in:
2024-08-31 15:35:33 +02:00
parent 736070dd01
commit 5041f02ba0

View File

@@ -74,7 +74,6 @@ func main() {
toCorrupt := int64(float32(filesize) * (float32(*percent) / 100))
indicesToCorrupt := selectRandomIndices(filesize, toCorrupt)
log.Printf("Corrupting %d bytes in %s", toCorrupt, file)
log.Printf("%#v", indicesToCorrupt)
for _, index := range indicesToCorrupt {
rbyte := byte(rand.Intn(256))