Sfoglia il codice sorgente

fix: wrong default log level

Sv443 1 anno fa
parent
commit
8c0c6c8546
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      src/utils.ts

+ 1 - 1
src/utils.ts

@@ -19,7 +19,7 @@ function getLogLevel(args: unknown[]): number {
       minLogLvl,
       maxLogLvl,
     );
-  return 1;
+  return 0;
 }
 
 /** Common prefix to be able to tell logged messages apart and filter them in devtools */