Add temp logging to exif sync

This commit is contained in:
Sam Becker 2023-11-19 01:20:16 -06:00
parent dc547033a4
commit a2e31c6123

View File

@ -113,6 +113,18 @@ export async function syncPhotoExifDataAction(formData: FormData) {
...convertPhotoToFormData(photo),
...photoFormExif,
});
console.log(
'SYNCING EXIF DATA',
photo,
);
console.log(
'convertPhotoToFormData(photo)',
convertPhotoToFormData(photo),
);
console.log(
'photoFormExif',
photoFormExif,
);
await sqlUpdatePhoto(photoFormDbInsert);
revalidatePhotosKey();
}