From 041840d26bd04c015cd371def1be853b32dc8f74 Mon Sep 17 00:00:00 2001 From: Dwi Siswanto Date: Mon, 16 Sep 2024 04:00:20 +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..e7a6b71048 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", maxHostError) maxHostError = r.options.TemplateThreads }