We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c3e0066 commit ba943efCopy full SHA for ba943ef
apps/queue-manager/src/consumers/end-import.consumer.ts
@@ -38,7 +38,9 @@ export class EndImportConsumer extends BaseConsumer {
38
});
39
}
40
41
- } catch (error) {}
+ } catch (error) {
42
+ console.log(`Error processing import for uploadId: ${data.uploadId}`, error);
43
+ }
44
45
46
private async convertRecordsToJsonFile(uploadId: string, uploadedFileId?: string): Promise<void> {
0 commit comments