File tree Expand file tree Collapse file tree
_internal/low_level_wrappers Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -203,7 +203,6 @@ async def get_asset_async():
203203"""
204204
205205import logging
206- import sys
207206
208207from sift_client .client import SiftClient
209208from sift_client .transport import SiftConnectionConfig
@@ -213,11 +212,4 @@ async def get_asset_async():
213212 "SiftConnectionConfig" ,
214213]
215214
216- logger = logging .getLogger ("sift_client" )
217- logging .basicConfig (
218- level = logging .ERROR , format = "%(asctime)s - %(name)s - %(levelname)s - %(message)s"
219- )
220-
221-
222- handler = logging .StreamHandler (sys .stdout )
223- logger .addHandler (handler )
215+ logging .getLogger (__name__ ).addHandler (logging .NullHandler ())
Original file line number Diff line number Diff line change 11from __future__ import annotations
22
3- import logging
43from typing import Any , cast
54
65from sift .assets .v1 .assets_pb2 import (
2019from sift_client .sift_types .asset import Asset , AssetUpdate
2120from sift_client .transport import GrpcClient , WithGrpcClient
2221
23- # Configure logging
24- logger = logging .getLogger (__name__ )
25-
2622
2723class AssetsLowLevelClient (LowLevelClientBase , WithGrpcClient ):
2824 """Low-level client for the AssetsAPI.
You can’t perform that action at this time.
0 commit comments