From 15840193385a1bac3c8fa762208fa48725155642 Mon Sep 17 00:00:00 2001 From: Dwi Siswanto Date: Mon, 16 Sep 2024 04:01:32 +0700 Subject: [PATCH] chore(runner): expose adjusted `max-host-error` value Signed-off-by: Dwi Siswanto --- internal/runner/runner.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 }