use llama_stack.log.get_logger

This commit is contained in:
Matthew Farrellee 2025-07-22 10:30:59 -04:00
parent 0ff9ae01a0
commit 20d401e953
2 changed files with 4 additions and 4 deletions

View file

@ -4,7 +4,6 @@
# This source code is licensed under the terms described in the LICENSE file in
# the root directory of this source tree.
import logging
from abc import ABC, abstractmethod
from collections.abc import AsyncIterator
from typing import Any
@ -23,9 +22,10 @@ from llama_stack.apis.inference import (
OpenAIMessageParam,
OpenAIResponseFormatParam,
)
from llama_stack.log import get_logger
from llama_stack.providers.utils.inference.openai_compat import prepare_openai_completion_params
logger = logging.getLogger(__name__)
logger = get_logger(name=__name__, category="core")
class OpenAIMixin(ABC):