ref(features/base) remove no sound for id warn

This commit is contained in:
Filip Rejmus 2022-11-01 19:05:22 +01:00 committed by GitHub
parent 9b1e662a93
commit 2b3989e5e6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 3 deletions

View File

@ -9,7 +9,6 @@ import {
_ADD_AUDIO_ELEMENT,
_REMOVE_AUDIO_ELEMENT
} from './actionTypes';
import logger from './logger';
/**
* The structure use by this reducer to describe a sound.
@ -96,8 +95,6 @@ function _addOrRemoveAudioElement(state: ISoundsState, action: any) {
audioElement: undefined
}));
}
} else {
logger.warn(`${action.type}: no sound for id: ${soundId}`);
}
return nextState;