Skip to content

Commit

Permalink
Merge pull request #549 from robertatakenaka/adiciona_os_parametros_d…
Browse files Browse the repository at this point in the history
…e_fetch_data_na_mensagem_do_log

Adiciona os parâmetros de fetch data na mensagem do log
  • Loading branch information
robertatakenaka authored Oct 9, 2024
2 parents 9436980 + 23f2d0a commit 4d6e5f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/utils/requester.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ def fetch_data(url, params=None, headers=None, json=False, timeout=2, verify=Tru
"""

try:
logger.info("Fetching the URL: %s" % url)
logger.info("Fetching the URL: %s %s" % (url, params))
response = requests.get(
url, params=params, headers=headers, timeout=timeout, verify=verify
)
Expand Down

0 comments on commit 4d6e5f0

Please sign in to comment.