Skip to content

Commit 8db493c

Browse files
authored
fix: Changed log level (#56)
1 parent 2af2f2b commit 8db493c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

ai21/http_client.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,8 @@ def execute_http_request(
7878
timeout = self._timeout_sec
7979
headers = self._headers
8080
data = json.dumps(params).encode()
81-
logger.info(f"Calling {method} {url} {headers} {data}")
81+
logger.debug(f"Calling {method} {url} {headers} {data}")
82+
8283
try:
8384
if method == "GET":
8485
response = self._session.request(

0 commit comments

Comments
 (0)