diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2024-04-24 16:11:43 -0300 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2024-05-01 07:06:07 -0300 |
commit | 8ee8f07ecea69c245acab23d537eb35d39d7ef9d (patch) | |
tree | c0fed20f9647583b0b086097041c8de902d27857 /src | |
parent | 6763ada7d7e7912bd2439881697f5281834747f4 (diff) |
content: image: drop missing image file warning
Diffstat (limited to 'src')
-rw-r--r-- | src/content/dependencies/image.js | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/content/dependencies/image.js b/src/content/dependencies/image.js index 6b24f386..822efe3f 100644 --- a/src/content/dependencies/image.js +++ b/src/content/dependencies/image.js @@ -1,4 +1,4 @@ -import {logInfo, logWarn} from '#cli'; +import {logWarn} from '#cli'; import {empty} from '#sugar'; export default { @@ -119,10 +119,6 @@ export default { const isMissingImageFile = missingImagePaths.includes(mediaSrc); - if (isMissingImageFile) { - logInfo`No image file for ${mediaSrc} - build again for list of missing images.`; - } - const willLink = !isMissingImageFile && (typeof slots.link === 'string' || slots.link); |