Remove false positives from a noisy debug message.

It looks like only PRS1 uses MINOR_FLAG, and we don't care about
the CPAP_PressurePulse channel missing valuesummary.
This commit is contained in:
sawinglogz 2021-10-26 12:30:35 -04:00
parent 8fd2840e15
commit d631a77b5b

View File

@ -1143,7 +1143,7 @@ void Session::updateCountSummary(ChannelID code)
using namespace schema;
Channel *ch_p = channel.channels[code];
if ( ! ch_p->isNull() ) { // the channel was found in the channel list
if ( ((ch_p->type() & (FLAG|SPAN)) == 0) ) { // the channel is not a flag or span type
if ( ((ch_p->type() & (FLAG|SPAN|MINOR_FLAG)) == 0) ) { // the channel is not a flag or span type
qDebug() << "No valuesummary for channel " << ch_p->label(); // so tell about missing summary
}
} else {