diff --git a/packages/mobile/src/redux/sagas.ts b/packages/mobile/src/redux/sagas.ts index 454e2228d94..798967ac62f 100644 --- a/packages/mobile/src/redux/sagas.ts +++ b/packages/mobile/src/redux/sagas.ts @@ -43,6 +43,9 @@ function* loggerSaga() { yield takeEvery('*', (action: AnyAction) => { if (action && action.type && loggerBlacklist.includes(action.type)) { + // Log only action type, but not the payload as it can have + // sensitive information. + Logger.debug('redux/saga@logger', `${action.type} (payload not logged)`) return } try {