Reduce verbose logging from INFO to DEBUG/TRACE

Cleaned up excessive INFO logging that was added during debugging.
Logs are now properly categorized by verbosity:

- Frequent/repeated logs (every chunk) → TRACE
  * TimerNode SLEEPING messages
  * Broadcaster "Read X bytes" messages

- Occasional/setup logs → DEBUG
  * Node::run() starting/spawning
  * TopZeroSync received
  * Cancelled during sleep

- Important events remain INFO
  * Encoder initialization
  * Header captured
  * Stream ended
  * Broadcaster task started

This makes INFO logs clean and useful for production monitoring,
while keeping detailed information available via DEBUG/TRACE levels.

Tested with RUST_LOG=info - output is now clean with only
meaningful events logged.

Affected files:
- pmoaudio/src/nodes/timer_node.rs: SLEEPING → trace, TopZeroSync → debug
- pmoaudio/src/pipeline.rs: Node::run/Spawning → debug
- pmoaudio-ext/src/sinks/streaming_flac_sink.rs: Read bytes → trace
This commit is contained in:
Claude
2025-11-12 10:02:38 +00:00
parent 81b990a828
commit 8ba6c1365a
3 changed files with 7 additions and 7 deletions

View File

@@ -137,7 +137,7 @@ impl NodeLogic for TimerNodeLogic {
SyncMarker::TopZeroSync => {
// Reset le timer de référence
self.start_time = Some(Instant::now());
tracing::info!("TimerNodeLogic: TopZeroSync received, timer reset");
tracing::debug!("TimerNodeLogic: TopZeroSync received, timer reset");
}
_ => {
// Autres markers: passthrough transparent
@@ -156,7 +156,7 @@ impl NodeLogic for TimerNodeLogic {
if lead_time > self.max_lead_time_sec {
// On est trop en avance, attendre
let sleep_duration = lead_time - self.max_lead_time_sec;
tracing::info!(
tracing::trace!(
"TimerNodeLogic: SLEEPING {:.3}s (lead_time={:.3}s > max={:.1}s)",
sleep_duration,
lead_time,
@@ -166,7 +166,7 @@ impl NodeLogic for TimerNodeLogic {
tokio::select! {
_ = tokio::time::sleep(Duration::from_secs_f64(sleep_duration)) => {}
_ = stop_token.cancelled() => {
tracing::info!("TimerNodeLogic cancelled during sleep");
tracing::debug!("TimerNodeLogic cancelled during sleep");
break;
}
}