Skip to content

Commit 2b46560

Browse files
committed
chore: Enhance error logging in getBlurImage with image source details
1 parent 48b48e0 commit 2b46560

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils/getBlurImage.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const getBlurImage = async (imgSrc: string) => {
66
const { base64 } = await getPlaiceholder(buffer, { size: 10 });
77
return base64;
88
} catch (e) {
9-
console.log(e);
9+
console.log(`[getBlurImage] 오류 발생: ${imgSrc}`, e);
1010
return '';
1111
}
1212
};

0 commit comments

Comments
 (0)