diff --git a/src/MongoDB.ts b/src/MongoDB.ts index 7f83b5e..78ea39a 100644 --- a/src/MongoDB.ts +++ b/src/MongoDB.ts @@ -409,7 +409,14 @@ class MongoDB if (existing) await this.#db.collection(collection).dropIndex(existing.name); - await this.#db.collection(collection).createIndex(index, options); + try + { + await this.#db.collection(collection).createIndex(index, options); + } + catch (err) + { + this.#logger.error(err as Error); + } } async ensureIndices (collection: string, indices: IndexSpecification[], options?: CreateIndexesOptions & StringIndexable): Promise