diff --git a/react/features/base/sounds/reducer.js b/react/features/base/sounds/reducer.js index 7e0fe5caf..a5e7ac5fc 100644 --- a/react/features/base/sounds/reducer.js +++ b/react/features/base/sounds/reducer.js @@ -96,10 +96,7 @@ function _addOrRemoveAudioElement(state, action) { })); } } else { - const actionName - = isAddAction ? '_ADD_AUDIO_ELEMENT' : '_REMOVE_AUDIO_ELEMENT'; - - logger.error(`${actionName}: no sound for id: ${soundId}`); + logger.warn(`${action.type}: no sound for id: ${soundId}`); } return nextState;