change a log level

This commit is contained in:
कारतोफ्फेलस्क्रिप्ट™ 2024-11-11 15:00:10 +01:00
parent 5eb9413469
commit 798b15a852
No known key found for this signature in database

View file

@ -120,7 +120,7 @@ export class DatabaseExportService {
if (totalRows === 0) continue; if (totalRows === 0) continue;
this.rowCounts[tableName] = totalRows; this.rowCounts[tableName] = totalRows;
this.logger.info(`[ExportService] Exported ${totalRows} rows from ${tableName}`); this.logger.debug(`[ExportService] Exported ${totalRows} rows from ${tableName}`);
writeStream.end(); writeStream.end();
pack.entry({ name: `${tableName}.jsonl` }, await fs.promises.readFile(tableFilePath)); pack.entry({ name: `${tableName}.jsonl` }, await fs.promises.readFile(tableFilePath));