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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

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;
},
});