diff options
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 |
commit | bf4cca2c78cbce2f807f78c953e14f25b06ae078 (patch) | |
tree | 56a00b283d7d14966e70933e21003821d47488bf /src | |
parent | 9332da311819d4ec9fa19b327271e3fab1dc49e8 (diff) |
thumbs: tweak verifyImagePaths messages
Diffstat (limited to 'src')
-rw-r--r-- | src/gen-thumbs.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gen-thumbs.js b/src/gen-thumbs.js index f92a10f2..dfa2c2ab 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); } |