Remove volume change debugging message

merge-requests/4/head
Phil Taylor 2021-05-14 09:53:59 +01:00
rodzic bf9b4ed86d
commit 94202d0c8d
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -828,7 +828,7 @@ bool audioHandler::init(const quint8 bits, const quint8 channels, const quint16
void audioHandler::setVolume(unsigned char volume)
{
qDebug(logAudio()) << (isInput ? "Input" : "Output") << "setVolume: " << volume << "(" << (qreal)(volume/255.0) << ")";
//qDebug(logAudio()) << (isInput ? "Input" : "Output") << "setVolume: " << volume << "(" << (qreal)(volume/255.0) << ")";
if (audioOutput != Q_NULLPTR) {
audioOutput->setVolume((qreal)(volume / 255.0));
}