Skip to content

Commit

Permalink
SatIP code cleanup
Browse files Browse the repository at this point in the history
Restructuring of SatIP code and minor improvements.
Signal monitor tuning timeout value now from database setting.
More log messages for unexpected states to support debugging.
No functional changes.
  • Loading branch information
kmdewaal committed Aug 25, 2022
1 parent 5dd3365 commit 7dc87b1
Show file tree
Hide file tree
Showing 9 changed files with 646 additions and 625 deletions.
2 changes: 1 addition & 1 deletion mythtv/libs/libmythtv/recorders/satipchannel.cpp
Expand Up @@ -98,7 +98,7 @@ bool SatIPChannel::IsOpen(void) const
{
QMutexLocker locker(&m_streamLock);
bool result = m_streamHandler != nullptr;
LOG(VB_CHANNEL, LOG_DEBUG, LOC + QString("< %1 IsOpen:%2").arg(__func__).arg(result));
LOG(VB_CHANNEL, LOG_DEBUG, LOC + QString("IsOpen:%1").arg(result));
return result;
}

Expand Down

0 comments on commit 7dc87b1

Please sign in to comment.