Ver código fonte

fix: wrong default log level

Sv443 1 ano atrás
pai
commit
0380e399f4
1 arquivos alterados com 1 adições e 1 exclusões
  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 */