From 12c3b5d05b296cfe67de69b9bed928e3c1bbf2c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Ant=C3=B4nio=20Cardoso?= Date: Tue, 27 Jun 2023 10:36:52 -0300 Subject: [PATCH] src: stream: pipeline: Be less verbose when receiving EOS --- src/stream/pipeline/runner.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stream/pipeline/runner.rs b/src/stream/pipeline/runner.rs index e85c103d..59978fbf 100644 --- a/src/stream/pipeline/runner.rs +++ b/src/stream/pipeline/runner.rs @@ -141,7 +141,7 @@ impl PipelineRunner { match msg.view() { MessageView::Eos(eos) => { - warn!("Received EndOfStream: {eos:#?}"); + debug!("Received EndOfStream: {eos:?}"); pipeline.debug_to_dot_file_with_ts( gst::DebugGraphDetails::all(), format!("pipeline-{pipeline_id}-eos"),