From abda56ced8af06f106f36575a48c4d5f934f6947 Mon Sep 17 00:00:00 2001 From: Thulinma Date: Thu, 1 Mar 2018 16:37:43 +0100 Subject: [PATCH] No longer print RTSP data to stderr on transport error --- src/input/input_rtsp.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/input/input_rtsp.cpp b/src/input/input_rtsp.cpp index daab2eb5..2f807157 100755 --- a/src/input/input_rtsp.cpp +++ b/src/input/input_rtsp.cpp @@ -259,8 +259,8 @@ namespace Mist{ return true; } - // Print anything possibly interesting to cerr - std::cerr << recH.BuildRequest() << std::endl; + //DO NOT Print anything possibly interesting to cerr + //std::cerr << recH.BuildRequest() << std::endl; recH.Clean(); return true; }