diff --git a/internal/runner/runner.go b/internal/runner/runner.go index e94b132df3..0b6da592d3 100644 --- a/internal/runner/runner.go +++ b/internal/runner/runner.go @@ -504,7 +504,7 @@ func (r *Runner) RunEnumeration() error { maxHostError := r.options.MaxHostError if r.options.TemplateThreads > maxHostError { gologger.Print().Msgf("[%v] The concurrency value is higher than max-host-error", r.colorizer.BrightYellow("WRN")) - gologger.Info().Msg("Adjusting max-host-error to the concurrency value") + gologger.Info().Msgf("Adjusting max-host-error to the concurrency value: %d", r.options.TemplateThreads) maxHostError = r.options.TemplateThreads }