diff --git a/src/app/features/tag/store/tag.reducer.ts b/src/app/features/tag/store/tag.reducer.ts index 775079aed1..e1f865ae1b 100644 --- a/src/app/features/tag/store/tag.reducer.ts +++ b/src/app/features/tag/store/tag.reducer.ts @@ -353,7 +353,10 @@ export const tagReducer = createReducer( on(updateTagOrder, (state: TagState, { ids }) => { if (ids.length !== state.ids.length) { - Log.log({ state, ids }); + Log.log({ + currentTagCount: state.ids.length, + nextTagCount: ids.length, + }); throw new Error('Tag length should not change on re-order'); }