.agents/skills/adk-style/references/logging.md
Every module that logs declares its logger with the google_adk. prefix:
logger = logging.getLogger('google_adk.' + __name__)
scripts/compliance_checks.py fails the commit on a bare
logging.getLogger(__name__). The prefix puts every ADK record under one
logger tree, so an application embedding ADK can raise or silence the
framework's logging with a single logging.getLogger('google_adk') call
without touching its own.
logger.info('Processing item %s', item_id)logger.info(f'Processing item {item_id}')