Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions bottlecap/src/bin/bottlecap/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P3 Badge Remove leftover test log from idle loop

This adds a non-actionable "This is a test" message inside extension_loop_idle, which executes continuously while the extension is idle. In debug-enabled environments, this will generate repetitive noise on every idle event and make it harder to diagnose real issues from logs; it appears to be test-only output rather than production telemetry.

Useful? React with 👍 / 👎.

}
Err(e) => {
error!("Error getting next event: {e:?}");
Expand Down
Loading