fix: use structlog instead of logging in mem0_manager for kwargs support

This commit is contained in:
Pratik Narola 2026-01-16 00:34:51 +05:30
parent 638a591dc5
commit 5bcecf4649

View file

@ -12,11 +12,12 @@ from tenacity import (
retry_if_exception_type,
before_sleep_log,
)
import structlog
from config import settings
from monitoring import timed
logger = logging.getLogger(__name__)
logger = structlog.get_logger(__name__)
# Retry decorator for database operations (Qdrant, Neo4j)
db_retry = retry(