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

PiperOrigin-RevId: 760019467
This commit is contained in:
Wei Sun (Jack)
2025-05-17 09:47:23 -07:00
committed by Copybara-Service
parent 0d7d7918b6
commit 729001fc0b
6 changed files with 6 additions and 6 deletions

View File

@@ -26,7 +26,7 @@ from pytest import Metafunc
from .utils import TestRunner
logger = logging.getLogger(__name__)
logger = logging.getLogger('google_adk.' + __name__)
def load_env_for_tests():