Skip to content

Commit d105d3a

Browse files
committed
chore: Add logging to agent_tool.py
1 parent e1c2afb commit d105d3a

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

src/google/adk/tools/agent_tool.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
from __future__ import annotations
1616

1717
import inspect
18+
import logging
1819
from typing import Any
1920
from typing import Awaitable
2021
from typing import Callable
@@ -39,6 +40,8 @@
3940
from ..agents.base_agent import BaseAgent
4041
from ..events.event import Event
4142

43+
logger = logging.getLogger('google_adk.' + __name__)
44+
4245

4346
class AgentTool(BaseTool):
4447
"""A tool that wraps an agent.

0 commit comments

Comments
 (0)