Remove debug logging

This commit is contained in:
Ryan Huffman 2017-04-21 01:17:59 -07:00 committed by Atlante45
parent 14f8c91e23
commit 6e307dd6eb

View file

@ -461,13 +461,10 @@ void GLVariableAllocationSupport::updateMemoryPressure() {
auto newState = MemoryPressureState::Idle;
if (hasTransfers) {
qDebug() << "Transferring";
newState = MemoryPressureState::Transfer;
} else if (pressure > OVERSUBSCRIBED_PRESSURE_VALUE && canDemote) {
qDebug() << "Demoting";
newState = MemoryPressureState::Oversubscribed;
} else if (pressure < UNDERSUBSCRIBED_PRESSURE_VALUE && ((unallocated != 0 && canPromote) || canPopulate)) {
qDebug() << "Promoting";
newState = MemoryPressureState::Undersubscribed;
}