Skip to content

Commit

Permalink
fix(migration): change logging level to error
Browse files Browse the repository at this point in the history
  • Loading branch information
makelicious committed Oct 8, 2024
1 parent fd1b46a commit 13a2754
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/search/src/features/reindex/reindex.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,8 @@ export const reindex = async () => {
)

if (droppedCompositionIds.length) {
logger.warn(`Could not index ${droppedCompositionIds.length} document(s)`)
logger.warn(droppedCompositionIds.join(', '))
logger.error(`Could not index ${droppedCompositionIds.length} document(s)`)
logger.error(droppedCompositionIds.join(', '))
}

return { index }
Expand Down

0 comments on commit 13a2754

Please sign in to comment.