Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 1 addition & 9 deletions python/lib/sift_client/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,6 @@ async def get_asset_async():
"""

import logging
import sys

from sift_client.client import SiftClient
from sift_client.transport import SiftConnectionConfig
Expand All @@ -213,11 +212,4 @@ async def get_asset_async():
"SiftConnectionConfig",
]

logger = logging.getLogger("sift_client")
logging.basicConfig(
level=logging.ERROR, format="%(asctime)s - %(name)s - %(levelname)s - %(message)s"
)


handler = logging.StreamHandler(sys.stdout)
logger.addHandler(handler)
logging.getLogger(__name__).addHandler(logging.NullHandler())
4 changes: 0 additions & 4 deletions python/lib/sift_client/_internal/low_level_wrappers/assets.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
from __future__ import annotations

import logging
from typing import Any, cast

from sift.assets.v1.assets_pb2 import (
Expand All @@ -20,9 +19,6 @@
from sift_client.sift_types.asset import Asset, AssetUpdate
from sift_client.transport import GrpcClient, WithGrpcClient

# Configure logging
logger = logging.getLogger(__name__)


class AssetsLowLevelClient(LowLevelClientBase, WithGrpcClient):
"""Low-level client for the AssetsAPI.
Expand Down
Loading