From 88a0d6217eb59a6d75c5a20dedcb388f6b73d9a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julian=20Gro=C3=9F?= Date: Sun, 12 Mar 2023 16:35:55 +0100 Subject: [PATCH] Throw warning if audio devices list is empty instead of debug message. --- libraries/audio-client/src/AudioClient.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/libraries/audio-client/src/AudioClient.cpp b/libraries/audio-client/src/AudioClient.cpp index eb6820421d..d39caa8c3f 100644 --- a/libraries/audio-client/src/AudioClient.cpp +++ b/libraries/audio-client/src/AudioClient.cpp @@ -1,13 +1,15 @@ // // AudioClient.cpp -// interface/src +// libraries/audio-client/src // // Created by Stephen Birarda on 1/22/13. // Copyright 2013 High Fidelity, Inc. // Copyright 2021 Vircadia contributors. +// Copyright 2023 Overte e.V. // // Distributed under the Apache License, Version 2.0. // See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html +// SPDX-License-Identifier: Apache-2.0 // #include "AudioClient.h" @@ -118,7 +120,7 @@ QList getAvailableDevices(QAudio::Mode mode, const QString& newDevices.push_front(HifiAudioDeviceInfo(devices.first(), true, mode, HifiAudioDeviceInfo::desktop)); } else { //current audio list is empty for some reason. - qCDebug(audioclient) << __FUNCTION__ << "Default device not found in list no alternative selection available"; + qCWarning(audioclient) << __FUNCTION__ << "Default device not found in list and no alternative selection available"; } } else { newDevices.push_front(defaultDesktopDevice);