Skip to content

Commit

Permalink
Tweak total file count
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanohoro committed Nov 6, 2023
1 parent 58c07ad commit d4038dd
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/go/cmd/strelka-fileshot/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -286,8 +286,6 @@ func main() {
responses <- nil
wgResponse.Wait()



}

// Check if the heapProf flag is set and write a heap profile if it is.
Expand Down Expand Up @@ -677,7 +675,7 @@ func getFilePaths(conf structs.FileShot, verbose *bool, hashes []string) []match
log.Printf("[LIMIT REACHED] File collection was limited by total capacity limit of %d. Use verbose logging mode to learn more.", conf.Files.LimitCapacity)
}

log.Printf("Collected %d total files.", totalCount)
log.Printf("Collected %d total files.", len(stageRichFiles))

return stageRichFiles
}

0 comments on commit d4038dd

Please sign in to comment.