Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion scan/scan.go
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,8 @@ func Scan(typ core.ScannerType, r *database.Redis, c *mirrors.Cache, url string,
return nil, err
}

log.Infof("[%s] Indexing the files...", name)

// Exec multi
s.ScannerCommit()

Expand Down Expand Up @@ -560,7 +562,7 @@ func ScanSource(r *database.Redis, forceRehash bool, stop <-chan struct{}) (err
return err
}

log.Infof("[source] Scanned %d files", count)
log.Infof("[source] Indexed %d files, %d removed", count, len(toremove))

return nil
}