Skip to content

Commit 3ab26e3

Browse files
committed
Remove commented console log from ensure-identities-index middleware
1 parent 1c7d71b commit 3ab26e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/management/identities/_middlewares/ensure-identities-index.middleware.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export class EnsureIdentitiesIndexMiddleware implements NestMiddleware {
1313
public async use(req: Request, res: Response, next: () => void) {
1414
try {
1515
await this.identityModel.ensureIndexes();
16-
console.log('Indexes synchronized.');
16+
// console.log('Indexes synchronized.');
1717
} catch (err) {
1818
console.error('Erreur lors de la création des index :', err);
1919
}

0 commit comments

Comments
 (0)