« get me outta code hell

thumbs: tweak verifyImagePaths messages - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/src/gen-thumbs.js
diff options
context:
space:
mode:
author(quasar) nebula <qznebula@protonmail.com>2023-08-15 15:50:29 -0300
committer(quasar) nebula <qznebula@protonmail.com>2023-08-15 15:50:29 -0300
commitbf4cca2c78cbce2f807f78c953e14f25b06ae078 (patch)
tree56a00b283d7d14966e70933e21003821d47488bf /src/gen-thumbs.js
parent9332da311819d4ec9fa19b327271e3fab1dc49e8 (diff)
thumbs: tweak verifyImagePaths messages
Diffstat (limited to 'src/gen-thumbs.js')
-rw-r--r--src/gen-thumbs.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gen-thumbs.js b/src/gen-thumbs.js
index f92a10f..dfa2c2a 100644
--- a/src/gen-thumbs.js
+++ b/src/gen-thumbs.js
@@ -495,14 +495,14 @@ export async function verifyImagePaths(mediaPath, {urls, wikiData}) {
   }
 
   if (!empty(missing)) {
-    logWarn`** Some track art is missing! (${missing.length + ' files'}) **`;
+    logWarn`** Some image files are missing! (${missing.length + ' files'}) **`;
     for (const file of missing) {
       console.warn(color.yellow(` - `) + file);
     }
   }
 
   if (!empty(misplaced)) {
-    logWarn`** Some track art is misplaced! (${misplaced.length + ' files'}) **`;
+    logWarn`** Some image files are misplaced! (${misplaced.length + ' files'}) **`;
     for (const file of misplaced) {
       console.warn(color.yellow(` - `) + file);
     }