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
+1 -1
View File
@@ -77,7 +77,7 @@ class HelpfulCommand(click.Command):
ctx.exit(2)
logger = logging.getLogger(__name__)
logger = logging.getLogger("google_adk." + __name__)
@click.group(context_settings={"max_content_width": 240})