less console logs

This commit is contained in:
zramsay 2025-03-14 11:12:09 -04:00
parent 0dff388898
commit 6027296548

View File

@ -121,10 +121,10 @@ export async function fetchAnimalRecords(portalName: string): Promise<AnimalReco
console.log('Processed animal records count:', records.length);
if (records.length > 0) {
console.log('Image URLs from records:');
records.forEach((record, index) => {
console.log(`Record ${index + 1} image URL: ${record.attributes.imageUrl}`);
});
//console.log(`Found ${record.length} image URLs from records`);
//records.forEach((record, index) => {
//console.log(`Record ${index + 1} image URL: ${record.attributes.imageUrl}`);
// });
} else {
console.log('No records found with valid image URLs');
}