From 05df528fd5fea3853088381f927bc14d2a522375 Mon Sep 17 00:00:00 2001 From: martmull Date: Thu, 25 Jun 2026 21:03:48 +0200 Subject: [PATCH] Add logging on sync catalog job (#22192) --- .../marketplace-catalog-sync.service.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/twenty-server/src/engine/core-modules/application/application-marketplace/marketplace-catalog-sync.service.ts b/packages/twenty-server/src/engine/core-modules/application/application-marketplace/marketplace-catalog-sync.service.ts index e9b9fc258f..fbbd5e2819 100644 --- a/packages/twenty-server/src/engine/core-modules/application/application-marketplace/marketplace-catalog-sync.service.ts +++ b/packages/twenty-server/src/engine/core-modules/application/application-marketplace/marketplace-catalog-sync.service.ts @@ -26,7 +26,10 @@ export class MarketplaceCatalogSyncService { private async syncRegistryApps(): Promise { const packages = await this.marketplaceService.fetchAppsFromRegistry(); + this.logger.log(`${packages.length} packages detected`); + for (const pkg of packages) { + this.logger.log(`Synchronizing ${pkg.name}...`); try { const fetchedManifest = await this.marketplaceService.fetchManifestFromRegistryCdn(