Browse Source

fix: log attachment on url issue

nc-feat/attachment-clean-up
mertmit 4 months ago
parent
commit
7c649e80ce
  1. 6
      packages/nocodb/src/modules/jobs/migration-jobs/nc_job_001_attachment.ts

6
packages/nocodb/src/modules/jobs/migration-jobs/nc_job_001_attachment.ts

@ -405,7 +405,11 @@ export class AttachmentMigration {
} }
} }
} catch (e) { } catch (e) {
this.log(`Error processing attachment ${attachment}`); this.log(
`Error processing attachment ${JSON.stringify(
attachment,
)}`,
);
this.log(e); this.log(e);
throw e; throw e;
} }

Loading…
Cancel
Save