Skip to content

Commit

Permalink
HLSStreamHandler : add missing arg to Return() debug log
Browse files Browse the repository at this point in the history
Refs #13488
Signed-off-by: Paul Harrison <pharrison@mythtv.org>
(cherry picked from commit 1be10a9)
  • Loading branch information
ijc authored and Paul Harrison committed Oct 5, 2019
1 parent 2d9065e commit 3d48c63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/libs/libmythtv/recorders/hlsstreamhandler.cpp
Expand Up @@ -79,7 +79,7 @@ void HLSStreamHandler::Return(HLSStreamHandler* & ref, int inputid)
if ((it != s_hlshandlers.end()) && (*it == ref))
{
LOG(VB_RECORD, LOG_INFO, QString("HLSSH[%1]: Closing handler for %2")
.arg(devname));
.arg(inputid).arg(devname));
ref->Stop();
LOG(VB_RECORD, LOG_DEBUG, QString("HLSSH[%1]: handler for %2 stopped")
.arg(inputid).arg(devname));
Expand Down

0 comments on commit 3d48c63

Please sign in to comment.