« get me outta code hell

content: image: drop missing image file warning - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
diff options
context:
space:
mode:
author(quasar) nebula <qznebula@protonmail.com>2024-04-24 16:11:43 -0300
committer(quasar) nebula <qznebula@protonmail.com>2024-04-24 16:12:17 -0300
commit3aba2a934ddb358d3b3bf937960867fb2555e3ec (patch)
tree5fd8ca182d09ffb4726876567bfe7d55f4ef3a36
parente6a47d7d0357c2388981f686bd559230de0b742d (diff)
content: image: drop missing image file warning
-rw-r--r--src/content/dependencies/image.js6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/content/dependencies/image.js b/src/content/dependencies/image.js
index 6b24f38..822efe3 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);