From 4068636bd643abf8383f16de2f988a5a9f7b1bf5 Mon Sep 17 00:00:00 2001 From: Tianning Li Date: Fri, 10 Apr 2026 13:47:08 -0400 Subject: [PATCH] test: add debug log in idle extension loop Co-Authored-By: Claude Sonnet 4.6 --- bottlecap/src/bin/bottlecap/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/bottlecap/src/bin/bottlecap/main.rs b/bottlecap/src/bin/bottlecap/main.rs index 8ee88bb26..f92616904 100644 --- a/bottlecap/src/bin/bottlecap/main.rs +++ b/bottlecap/src/bin/bottlecap/main.rs @@ -282,6 +282,7 @@ async fn extension_loop_idle( match extension::next_event(client, &r.extension_id, &aws_config.runtime_api).await { Ok(_) => { debug!("Extension is idle, skipping next event"); + debug!("This is a test"); } Err(e) => { error!("Error getting next event: {e:?}");