From 3f1b0d0957e7c92c9f6ae82c0c7a14856c2f5744 Mon Sep 17 00:00:00 2001 From: Xuan Yang Date: Thu, 22 Jan 2026 13:59:49 -0800 Subject: [PATCH] chore: minor fix for DebugLoggingPlugin example Co-authored-by: Xuan Yang PiperOrigin-RevId: 859762221 --- src/google/adk/plugins/debug_logging_plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/google/adk/plugins/debug_logging_plugin.py b/src/google/adk/plugins/debug_logging_plugin.py index ef3507a0..61f9b079 100644 --- a/src/google/adk/plugins/debug_logging_plugin.py +++ b/src/google/adk/plugins/debug_logging_plugin.py @@ -82,7 +82,7 @@ class DebugLoggingPlugin(BasePlugin): Example: >>> debug_plugin = DebugLoggingPlugin(output_path="/tmp/adk_debug.yaml") >>> runner = Runner( - ... agents=[my_agent], + ... agent=my_agent, ... plugins=[debug_plugin], ... )