mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2025-12-30 11:22:31 +00:00
fix(config): Move debugAudioLelvels in config.testing
This commit is contained in:
@@ -1590,7 +1590,7 @@ export default {
|
|||||||
|
|
||||||
if (config.testing?.testMode) {
|
if (config.testing?.testMode) {
|
||||||
this.audioLevelsMap[id] = newLvl;
|
this.audioLevelsMap[id] = newLvl;
|
||||||
if (config.debugAudioLevels) {
|
if (config.testing?.debugAudioLevels) {
|
||||||
logger.log(`AudioLevel:${id}/${newLvl}`);
|
logger.log(`AudioLevel:${id}/${newLvl}`);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -103,6 +103,10 @@ var config = {
|
|||||||
|
|
||||||
// Dump transcripts to a <transcript> element for debugging.
|
// Dump transcripts to a <transcript> element for debugging.
|
||||||
// dumpTranscript: false,
|
// dumpTranscript: false,
|
||||||
|
|
||||||
|
// Log the audio levels.
|
||||||
|
// debugAudioLevels: true,
|
||||||
|
|
||||||
},
|
},
|
||||||
|
|
||||||
// Disables moderator indicators.
|
// Disables moderator indicators.
|
||||||
@@ -1633,7 +1637,6 @@ var config = {
|
|||||||
// List of undocumented settings used in jitsi-meet
|
// List of undocumented settings used in jitsi-meet
|
||||||
/**
|
/**
|
||||||
_immediateReloadThreshold
|
_immediateReloadThreshold
|
||||||
debugAudioLevels
|
|
||||||
deploymentInfo
|
deploymentInfo
|
||||||
dialOutAuthUrl
|
dialOutAuthUrl
|
||||||
dialOutCodesUrl
|
dialOutCodesUrl
|
||||||
|
|||||||
@@ -571,6 +571,7 @@ export interface IConfig {
|
|||||||
subject?: string;
|
subject?: string;
|
||||||
testing?: {
|
testing?: {
|
||||||
assumeBandwidth?: boolean;
|
assumeBandwidth?: boolean;
|
||||||
|
debugAudioLevels?: boolean;
|
||||||
dumpTranscript?: boolean;
|
dumpTranscript?: boolean;
|
||||||
noAutoPlayVideo?: boolean;
|
noAutoPlayVideo?: boolean;
|
||||||
p2pTestMode?: boolean;
|
p2pTestMode?: boolean;
|
||||||
|
|||||||
@@ -77,7 +77,6 @@ export default [
|
|||||||
'connectionIndicators',
|
'connectionIndicators',
|
||||||
'constraints',
|
'constraints',
|
||||||
'brandingRoomAlias',
|
'brandingRoomAlias',
|
||||||
'debugAudioLevels',
|
|
||||||
'deeplinking.disabled',
|
'deeplinking.disabled',
|
||||||
'deeplinking.desktop.enabled',
|
'deeplinking.desktop.enabled',
|
||||||
'defaultLocalDisplayName',
|
'defaultLocalDisplayName',
|
||||||
|
|||||||
Reference in New Issue
Block a user