diff --git a/main.go b/main.go index ce26d22..1e65dcb 100644 --- a/main.go +++ b/main.go @@ -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))