make log quoting consistent

This commit is contained in:
sentriz
2020-12-31 00:14:27 +00:00
committed by Senan Kelly
parent 711ffe144f
commit 352c75b85d
2 changed files with 4 additions and 4 deletions

View File

@@ -199,7 +199,7 @@ func (s *Scanner) Start(opts ScanOptions) error {
Unsorted: true,
FollowSymbolicLinks: true,
ErrorCallback: func(path string, err error) godirwalk.ErrorAction {
log.Printf("error processing %q: %v", path, err)
log.Printf("error processing `%s`: %v", path, err)
errCount++
return godirwalk.SkipNode
},