Selaa lähdekoodia

fix: set log level earlier

Sven 1 vuosi sitten
vanhempi
commit
39e8e1e3dc
1 muutettua tiedostoa jossa 7 lisäystä ja 8 poistoa
  1. 7 8
      src/index.ts

+ 7 - 8
src/index.ts

@@ -18,10 +18,9 @@ import {
   // song lists
   // song lists
   setSongListsConfig, initQueueButtons,
   setSongListsConfig, initQueueButtons,
   // behavior
   // behavior
-  setBehaviorConfig, initBeforeUnloadHook,
-  disableBeforeUnload, initAutoCloseToasts,
-  initRememberSongTime, disableDarkReader,
-  enableLockVolume,
+  initBeforeUnloadHook, disableBeforeUnload,
+  initAutoCloseToasts, initRememberSongTime,
+  disableDarkReader, enableLockVolume,
   // input
   // input
   setInputConfig, initArrowKeySkip,
   setInputConfig, initArrowKeySkip,
   initSiteSwitch, addAnchorImprovements,
   initSiteSwitch, addAnchorImprovements,
@@ -41,7 +40,7 @@ import {
 
 
   console.log();
   console.log();
   console.log(
   console.log(
-    `%c${scriptInfo.name}%cv${scriptInfo.version}%c\n\nBuild ${buildNumber} ─ ${scriptInfo.namespace}`,
+    `%c${scriptInfo.name}%cv${scriptInfo.version}%c\n\nBuild #${buildNumber} ─ ${scriptInfo.namespace}`,
     `font-weight: bold; ${styleCommon} ${styleGradient}`,
     `font-weight: bold; ${styleCommon} ${styleGradient}`,
     `background-color: #333; ${styleCommon}`,
     `background-color: #333; ${styleCommon}`,
     "padding: initial;",
     "padding: initial;",
@@ -80,15 +79,15 @@ async function init() {
     });
     });
 
 
     const features = await initConfig();
     const features = await initConfig();
+    setLogLevel(features.logLevel);
+
     await initLyricsCache();
     await initLyricsCache();
 
 
     await initTranslations(features.locale ?? "en_US");
     await initTranslations(features.locale ?? "en_US");
     setLocale(features.locale ?? "en_US");
     setLocale(features.locale ?? "en_US");
 
 
-    setLogLevel(features.logLevel);
-
+    // TODO(v1.2): remove these
     setLayoutConfig(features);
     setLayoutConfig(features);
-    setBehaviorConfig(features);
     setInputConfig(features);
     setInputConfig(features);
     setSongListsConfig(features);
     setSongListsConfig(features);