Skip to content

Commit 4fe6788

Browse files
committed
update logging
1 parent a2e1d2d commit 4fe6788

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package/lib/dataset_query_api_client/api/default/get_queries.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def _parse_response(*, client: Client, response: httpx.Response, query_type: Pos
4545
if response.status_code == HTTPStatus.OK:
4646
try:
4747
content = response.json()
48-
logging.warning("PARSING RESPONSE FOR QUERY TYPE: {}, CONTENT: {}".format(query_type, repr(content)))
48+
logging.info("PARSING RESPONSE FOR QUERY TYPE: {}, CONTENT: {}".format(query_type, repr(content)))
4949
response_200 = QueryResult.from_dict(content, query_type)
5050

5151
return response_200

package/lib/dataset_query_api_client/api/default/post_queries.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def _parse_response(*, client: Client, response: httpx.Response, query_type: Pos
3939
if response.status_code == HTTPStatus.OK:
4040
try:
4141
content = response.json()
42-
logging.warning("PARSING RESPONSE FOR QUERY TYPE: {}, CONTENT: {}".format(query_type, repr(content)))
42+
logging.info("PARSING RESPONSE FOR QUERY TYPE: {}, CONTENT: {}".format(query_type, repr(content)))
4343
response_200 = QueryResult.from_dict(content, query_type)
4444

4545
return response_200

0 commit comments

Comments
 (0)