From 2d9065e8cc55e2c8c97fcea2ecf41b331c562f3c Mon Sep 17 00:00:00 2001 From: Ian Campbell Date: Sat, 5 Oct 2019 00:52:14 +0100 Subject: [PATCH] HLSStreamHandler : add debug log to the constructor mirroring the destructor's Refs #13488 Signed-off-by: Paul Harrison (cherry picked from commit 88b3020b303fb46a419de8185e2000c789782940) --- mythtv/libs/libmythtv/recorders/hlsstreamhandler.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/mythtv/libs/libmythtv/recorders/hlsstreamhandler.cpp b/mythtv/libs/libmythtv/recorders/hlsstreamhandler.cpp index 2990a144b32..f27a94d224c 100644 --- a/mythtv/libs/libmythtv/recorders/hlsstreamhandler.cpp +++ b/mythtv/libs/libmythtv/recorders/hlsstreamhandler.cpp @@ -100,6 +100,7 @@ void HLSStreamHandler::Return(HLSStreamHandler* & ref, int inputid) HLSStreamHandler::HLSStreamHandler(const IPTVTuningData& tuning, int inputid) : IPTVStreamHandler(tuning, inputid) { + LOG(VB_GENERAL, LOG_INFO, LOC + "ctor"); m_hls = new HLSReader(); m_readbuffer = new uint8_t[BUFFER_SIZE]; }