fix: use structlog instead of logging in mem0_manager for kwargs support
This commit is contained in:
parent
638a591dc5
commit
5bcecf4649
1 changed files with 2 additions and 1 deletions
|
|
@ -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(
|
||||
|
|
|
|||
Loading…
Reference in a new issue