removed timing

This commit is contained in:
Philipp Häfelfinger 2019-04-07 23:39:38 +02:00
parent 281646b883
commit 3c50f36a77
1 changed files with 0 additions and 7 deletions

View File

@ -13,7 +13,6 @@ import (
"path/filepath" "path/filepath"
"runtime" "runtime"
"sync" "sync"
"time"
) )
type fileChecksumCalculator func(filePath string) (string, error) type fileChecksumCalculator func(filePath string) (string, error)
@ -76,8 +75,6 @@ func checkFileForChangesWorker(workQueue <-chan localFileStructure.FilesystemNod
continue continue
} }
startTime := time.Now()
metadata, err := imageDb.ImageMetadata(file.Path) metadata, err := imageDb.ImageMetadata(file.Path)
if err == datastore.ErrorRecordNotFound { if err == datastore.ErrorRecordNotFound {
logrus.Debugf("Creating new metadata entry for %s.", file.Path) logrus.Debugf("Creating new metadata entry for %s.", file.Path)
@ -116,10 +113,6 @@ func checkFileForChangesWorker(workQueue <-chan localFileStructure.FilesystemNod
if err != nil { if err != nil {
logrus.Errorf("Error during save of metadata of %s - %s", file.Path, err) logrus.Errorf("Error during save of metadata of %s - %s", file.Path, err)
} }
stopTime := time.Now()
usedTime := stopTime.Sub(startTime)
logrus.Debugf("Processing file %s took %f s", file.Path, usedTime.Seconds())
} }
waitGroup.Done() waitGroup.Done()
} }