Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/light-friends-pay.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"notion-to-utils": patch
---

error log modification
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ async function getImageMetadata(url: string): Promise<{
aspectRatio: result.height > 0 ? result.width / result.height : 1,
};
} catch (error) {
console.error('이미지 메타데이터 추출 실패:', error);
console.error('이미지 메타데이터 추출 실패:', url, error);
return null;
}
}
Expand Down