mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-04 22:45:17 +02:00
add debug for result values from DS settings
This commit is contained in:
parent
5936073425
commit
3e842d7e34
1 changed files with 2 additions and 2 deletions
|
@ -421,9 +421,9 @@ void AvatarMixer::parseDomainServerSettings(const QJsonObject& domainSettings) {
|
|||
const float DEFAULT_NODE_SEND_BANDWIDTH = 1.0f;
|
||||
QJsonValue nodeBandwidthValue = domainSettings[AVATAR_MIXER_SETTINGS_KEY].toObject()[NODE_SEND_BANDWIDTH_KEY];
|
||||
if (!nodeBandwidthValue.isDouble()) {
|
||||
qDebug() << NODE_SEND_BANDWIDTH_KEY << "is not a double - will continue with default value of"
|
||||
<< DEFAULT_NODE_SEND_BANDWIDTH;
|
||||
qDebug() << NODE_SEND_BANDWIDTH_KEY << "is not a double - will continue with default value";
|
||||
}
|
||||
|
||||
_maxMbpsPerNode = nodeBandwidthValue.toDouble(DEFAULT_NODE_SEND_BANDWIDTH);
|
||||
qDebug() << "The maximum send bandwidth per node is" << _maxMbpsPerNode << "Mbps.";
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue