diff --git a/scan/scan.go b/scan/scan.go index 621a6dfd..5e679738 100644 --- a/scan/scan.go +++ b/scan/scan.go @@ -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() @@ -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 }