Skip to content

Commit

Permalink
removed newline
Browse files Browse the repository at this point in the history
  • Loading branch information
jakopako committed Apr 26, 2024
1 parent 1891f78 commit ac10bd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ func main() {
if *singleScraper == "" {
nrWorkers = int(math.Min(20, float64(len(config.Scrapers))))
}
slog.Info(fmt.Sprintf("running with %d threads\n", nrWorkers))
slog.Info(fmt.Sprintf("running with %d threads", nrWorkers))
workerWg.Add(nrWorkers)
slog.Debug("starting workers")
for i := 0; i < nrWorkers; i++ {
Expand Down

0 comments on commit ac10bd2

Please sign in to comment.