diff --git a/ts/state/ducks/conversations.ts b/ts/state/ducks/conversations.ts index 93280c47f4..ac3eb1dec0 100644 --- a/ts/state/ducks/conversations.ts +++ b/ts/state/ducks/conversations.ts @@ -748,6 +748,10 @@ function createGroup(): ThunkAction< switchToAssociatedView: true, })(dispatch, getState, ...args); } catch (err) { + window.log.error( + 'Failed to create group', + err && err.stack ? err.stack : err + ); dispatch({ type: 'CREATE_GROUP_REJECTED' }); } };