aboutsummaryrefslogtreecommitdiff
path: root/repo.go
diff options
context:
space:
mode:
Diffstat (limited to 'repo.go')
-rw-r--r--repo.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/repo.go b/repo.go
index bf8b167..8df6fdf 100644
--- a/repo.go
+++ b/repo.go
@@ -242,6 +242,7 @@ func findSimilarChunk(chunk Chunk, sketches SketchMap) (*ChunkId, bool) {
for _, id := range chunkIds {
count := similarChunks[*id]
count += 1
+ log.Printf("Found %d %d time(s)", id, count)
if count > max {
similarChunk = id
}