mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 19:20:45 +00:00
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:
parent
8fd2840e15
commit
d631a77b5b
@ -1143,7 +1143,7 @@ void Session::updateCountSummary(ChannelID code)
|
|||||||
using namespace schema;
|
using namespace schema;
|
||||||
Channel *ch_p = channel.channels[code];
|
Channel *ch_p = channel.channels[code];
|
||||||
if ( ! ch_p->isNull() ) { // the channel was found in the channel list
|
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
|
qDebug() << "No valuesummary for channel " << ch_p->label(); // so tell about missing summary
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
Reference in New Issue
Block a user