Suppress logging from deps
This commit is contained in:
parent
450a58eb52
commit
3c235e8b6c
2 changed files with 2 additions and 0 deletions
|
|
@ -6,6 +6,7 @@ from rich.logging import RichHandler
|
|||
logging.basicConfig(level=logging.DEBUG)
|
||||
logging.getLogger("httpx").setLevel(logging.WARNING)
|
||||
logging.getLogger("httpcore").setLevel(logging.WARNING)
|
||||
logging.getLogger("docling").setLevel(logging.WARNING)
|
||||
|
||||
|
||||
def get_logger() -> logging.Logger:
|
||||
|
|
|
|||
|
|
@ -6,6 +6,7 @@ from llm_judge import LLMJudge
|
|||
from rich.console import Console
|
||||
from rich.progress import Progress
|
||||
|
||||
from haiku.rag import logging # noqa
|
||||
from haiku.rag.client import HaikuRAG
|
||||
from haiku.rag.qa import get_qa_agent
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue