We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c67ed09 commit c23a0b4Copy full SHA for c23a0b4
processor/processor.go
@@ -573,9 +573,11 @@ func Process() {
573
574
SortBy = strings.ToLower(SortBy)
575
576
- printDebug(fmt.Sprintf("NumCPU: %d", runtime.NumCPU()))
577
- printDebug(fmt.Sprintf("SortBy: %s", SortBy))
578
- printDebug(fmt.Sprintf("PathDenyList: %v", PathDenyList))
+ if Debug {
+ printDebug(fmt.Sprintf("NumCPU: %d", runtime.NumCPU()))
+ printDebug(fmt.Sprintf("SortBy: %s", SortBy))
579
+ printDebug(fmt.Sprintf("PathDenyList: %v", PathDenyList))
580
+ }
581
582
potentialFilesQueue := make(chan *gocodewalker.File, FileListQueueSize) // files that pass the .gitignore checks
583
fileListQueue := make(chan *FileJob, FileListQueueSize) // Files ready to be read from disk
0 commit comments