Skip to content

Commit

Permalink
Move the time offset debugging messages to VB_CHANNEL+VB_EXTRA.
Browse files Browse the repository at this point in the history
These are printed once a second on some systems resulting in
unnecessarily huge logs for anyone trying to debug with VB_CHANNEL.
  • Loading branch information
stuartm committed May 11, 2011
1 parent 0434cd9 commit 29e03ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mythtv/libs/libmythtv/dtvsignalmonitor.cpp
Expand Up @@ -370,7 +370,7 @@ void DTVSignalMonitor::HandlePMT(uint, const ProgramMapTable *pmt)

void DTVSignalMonitor::HandleSTT(const SystemTimeTable*)
{
VERBOSE(VB_CHANNEL, LOC + "Time Offset: "<<GetStreamData()->TimeOffset());
VERBOSE(VB_CHANNEL+VB_EXTRA, LOC + "Time Offset: "<<GetStreamData()->TimeOffset());
}

void DTVSignalMonitor::HandleMGT(const MasterGuideTable* mgt)
Expand Down Expand Up @@ -439,7 +439,7 @@ void DTVSignalMonitor::HandleCVCT(uint, const CableVirtualChannelTable* cvct)

void DTVSignalMonitor::HandleTDT(const TimeDateTable*)
{
VERBOSE(VB_CHANNEL, LOC + "Time Offset: "<<GetStreamData()->TimeOffset());
VERBOSE(VB_CHANNEL+VB_EXTRA, LOC + "Time Offset: "<<GetStreamData()->TimeOffset());
}

void DTVSignalMonitor::HandleNIT(const NetworkInformationTable *nit)
Expand Down

0 comments on commit 29e03ce

Please sign in to comment.