elevate buzz-acp gate-7 dispatch logs to info level - #6362
Open
Oviemudiaga wants to merge 1 commit into
Open
Conversation
Dispatch drops were invisible under RUST_LOG=info: pool_exhausted, agent_claimed, and the dispatch_pending summary all logged at debug. Filtered/silently-dropped dispatches left zero trace, forcing 15-60min blind diagnosis (RESEARCH/BUZZ_ACP_DISPATCH_GATES.md). Promote all three to info so queue/dispatch lifecycle is observable at the default level. Co-authored-by: Oviemudiaga <ovuede.mudiaga@gmail.com> Signed-off-by: Oviemudiaga <ovuede.mudiaga@gmail.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
Dispatch drops were invisible under
RUST_LOG=info. All three gate-7 dispatch lifecycle events logged atdebug!:pool_exhausted(lib.rs:3730)agent_claimed(lib.rs:3736)dispatch_pendingsummary (lib.rs:3794)A filtered or silently-dropped dispatch left zero trace at the default level, forcing 15-60 min of blind diagnosis. Root-caused in RESEARCH/BUZZ_ACP_DISPATCH_GATES.md.
Change
Promote all three to
info!(single-file change,crates/buzz-acp/src/lib.rs) so queue/dispatch lifecycle is observable at the default level.Verification
debug!→info!); no logic touched.