From aaaf921d7924207620ecda4305662b1588138ecf Mon Sep 17 00:00:00 2001 From: Matthew Farrellee Date: Thu, 31 Jul 2025 15:45:39 -0500 Subject: [PATCH] remove unused logger --- llama_stack/providers/remote/inference/sambanova/sambanova.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/llama_stack/providers/remote/inference/sambanova/sambanova.py b/llama_stack/providers/remote/inference/sambanova/sambanova.py index 78557161a..96469acac 100644 --- a/llama_stack/providers/remote/inference/sambanova/sambanova.py +++ b/llama_stack/providers/remote/inference/sambanova/sambanova.py @@ -4,14 +4,11 @@ # This source code is licensed under the terms described in the LICENSE file in # the root directory of this source tree. -from llama_stack.log import get_logger from llama_stack.providers.utils.inference.litellm_openai_mixin import LiteLLMOpenAIMixin from .config import SambaNovaImplConfig from .models import MODEL_ENTRIES -logger = get_logger(name=__name__, category="inference") - class SambaNovaInferenceAdapter(LiteLLMOpenAIMixin): def __init__(self, config: SambaNovaImplConfig):