Skip to content

Commit

Permalink
chore(runner): expose adjusted max-host-error value
Browse files Browse the repository at this point in the history
Signed-off-by: Dwi Siswanto <git@dw1.io>
  • Loading branch information
dwisiswant0 committed Sep 15, 2024
1 parent 146f6ae commit 041840d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/runner/runner.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit 041840d

Please sign in to comment.