fix(config): Move debugAudioLelvels in config.testing

This commit is contained in:
Hristo Terezov
2025-01-15 10:59:33 -06:00
parent ef56f1d23d
commit c1cbd37d87
4 changed files with 6 additions and 3 deletions

View File

@@ -1590,7 +1590,7 @@ export default {
if (config.testing?.testMode) {
this.audioLevelsMap[id] = newLvl;
if (config.debugAudioLevels) {
if (config.testing?.debugAudioLevels) {
logger.log(`AudioLevel:${id}/${newLvl}`);
}
}

View File

@@ -103,6 +103,10 @@ var config = {
// Dump transcripts to a <transcript> element for debugging.
// dumpTranscript: false,
// Log the audio levels.
// debugAudioLevels: true,
},
// Disables moderator indicators.
@@ -1633,7 +1637,6 @@ var config = {
// List of undocumented settings used in jitsi-meet
/**
_immediateReloadThreshold
debugAudioLevels
deploymentInfo
dialOutAuthUrl
dialOutCodesUrl

View File

@@ -571,6 +571,7 @@ export interface IConfig {
subject?: string;
testing?: {
assumeBandwidth?: boolean;
debugAudioLevels?: boolean;
dumpTranscript?: boolean;
noAutoPlayVideo?: boolean;
p2pTestMode?: boolean;

View File

@@ -77,7 +77,6 @@ export default [
'connectionIndicators',
'constraints',
'brandingRoomAlias',
'debugAudioLevels',
'deeplinking.disabled',
'deeplinking.desktop.enabled',
'defaultLocalDisplayName',