Skip to content

Commit

Permalink
feat: changed info to warn
Browse files Browse the repository at this point in the history
  • Loading branch information
VKotwicki committed Jul 21, 2023
1 parent a1c5918 commit 14502dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion providers/securitytrails.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def fetch_domains(st_api_key: str, st_domains: str, **args):

raw_domains = api.get_subdomains(domain).json()

logging.info("Testing", raw_domains["subdomain_count"], "subdomains")
logging.warn("Testing", raw_domains["subdomain_count"], "subdomains")
domains.extend([Domain(f"{sb}.{domain}") for sb in raw_domains["subdomains"]])

return domains

0 comments on commit 14502dc

Please sign in to comment.