Summary
The message bus bridge logs communication.receive.timeout at DEBUG level every time a channel poll times out (1-second interval). With 8 channels (tasks, agents, budget, messages, system, approvals, meetings, #settings), this produces 8 debug lines per second -- 691,200 lines per day. In a 2-minute log sample, these timeout messages accounted for 41% of all log output (1,048 of 2,568 lines).
This noise makes real issues hard to find in logs and would flood debug.log and agent_activity.log once the file sinks are activated.
Analysis
A timeout on an idle channel poll is expected normal behavior -- it means no messages arrived in the polling window. This is not a diagnostic event worth logging. The log serves no debugging purpose: if channels stop working, the symptom would be missing events, not missing timeout logs.
Scope
Remove the communication.receive.timeout debug log entirely. A channel poll timing out is normal operation, not a condition that needs recording.
If a "channels are idle" diagnostic is needed for debugging connection issues, replace with a periodic batch summary (e.g., once per minute: "8 channels idle, 0 messages delivered in last 60s") at DEBUG level. But default should be no log.
Acceptance Criteria
Summary
The message bus bridge logs
communication.receive.timeoutat DEBUG level every time a channel poll times out (1-second interval). With 8 channels (tasks, agents, budget, messages, system, approvals, meetings, #settings), this produces 8 debug lines per second -- 691,200 lines per day. In a 2-minute log sample, these timeout messages accounted for 41% of all log output (1,048 of 2,568 lines).This noise makes real issues hard to find in logs and would flood
debug.logandagent_activity.logonce the file sinks are activated.Analysis
A timeout on an idle channel poll is expected normal behavior -- it means no messages arrived in the polling window. This is not a diagnostic event worth logging. The log serves no debugging purpose: if channels stop working, the symptom would be missing events, not missing timeout logs.
Scope
Remove the
communication.receive.timeoutdebug log entirely. A channel poll timing out is normal operation, not a condition that needs recording.If a "channels are idle" diagnostic is needed for debugging connection issues, replace with a periodic batch summary (e.g., once per minute: "8 channels idle, 0 messages delivered in last 60s") at DEBUG level. But default should be no log.
Acceptance Criteria
communication.receive.timeoutlines in logs during normal idle operation