« get me outta code hell

fix incorrect warning in quickLoadAllFromYAML (repl) - 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>2022-12-06 07:58:25 -0400
committer(quasar) nebula <qznebula@protonmail.com>2022-12-06 07:58:25 -0400
commit6c22ef3ede69956d7381bed1f9fa0aa286f9dd63 (patch)
treef8ced4acac0813d25a52ff3b3e44b5bf8777cf00
parent046d1acc712b2ab90961c67890935ab9555191e5 (diff)
fix incorrect warning in quickLoadAllFromYAML (repl)
-rw-r--r--src/data/yaml.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/data/yaml.js b/src/data/yaml.js
index ab97ab7..ae160d5 100644
--- a/src/data/yaml.js
+++ b/src/data/yaml.js
@@ -1379,7 +1379,7 @@ export async function quickLoadAllFromYAML(dataPath, {
     logInfo`No reference errors found. (complete data)`;
   } catch (error) {
     showAggregate(error);
-    logWarn`Duplicate directories found. (partial data)`;
+    logWarn`Reference errors found. (partial data)`;
   }
 
   sortWikiDataArrays(wikiData);