Don't log call audio levels actions to console in dev mode

This commit is contained in:
Scott Nonnenberg
2022-08-31 15:58:05 -07:00
committed by GitHub
parent 1cb70547fb
commit c819d27ce9

View File

@@ -40,6 +40,9 @@ const logger = createLogger({
if (action.type === 'network/CHECK_NETWORK_STATUS') {
return false;
}
if (action.type === 'calling/GROUP_CALL_AUDIO_LEVELS_CHANGE') {
return false;
}
return true;
},
});