chore: logger = logging.getLogger(__name__) --> logger = logging.getLogger('google_adk.' + __name__)

PiperOrigin-RevId: 759894901
This commit is contained in:
Wei Sun (Jack)
2025-05-16 23:03:27 -07:00
committed by Copybara-Service
parent 482099c925
commit 0d7d7918b6
34 changed files with 79 additions and 64 deletions
+3 -2
View File
@@ -15,8 +15,9 @@
"""Utility functions for converting examples to a string that can be used in system instructions in the prompt."""
import logging
from typing import Optional, Union
from typing import Optional
from typing import TYPE_CHECKING
from typing import Union
from .base_example_provider import BaseExampleProvider
from .example import Example
@@ -24,7 +25,7 @@ from .example import Example
if TYPE_CHECKING:
from ..sessions.session import Session
logger = logging.getLogger(__name__)
logger = logging.getLogger("google_adk." + __name__)
# Constant parts of the example string
_EXAMPLES_INTRO = (