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

@@ -19,7 +19,7 @@ from .built_in_code_executor import BuiltInCodeExecutor
from .code_executor_context import CodeExecutorContext
from .unsafe_local_code_executor import UnsafeLocalCodeExecutor
logger = logging.getLogger(__name__)
logger = logging.getLogger('google_adk.' + __name__)
__all__ = [
'BaseCodeExecutor',