diff --git a/packages/cli/src/databases/import-export/database-export.service.ts b/packages/cli/src/databases/import-export/database-export.service.ts index 2eda15d98a..c8080085e2 100644 --- a/packages/cli/src/databases/import-export/database-export.service.ts +++ b/packages/cli/src/databases/import-export/database-export.service.ts @@ -120,7 +120,7 @@ export class DatabaseExportService { if (totalRows === 0) continue; this.rowCounts[tableName] = totalRows; - this.logger.info(`[ExportService] Exported ${totalRows} rows from ${tableName}`); + this.logger.debug(`[ExportService] Exported ${totalRows} rows from ${tableName}`); writeStream.end(); pack.entry({ name: `${tableName}.jsonl` }, await fs.promises.readFile(tableFilePath));