@djangocfg/api 2.1.233 → 2.1.234

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1388,9 +1388,14 @@ var BaseClient = class {
1388
1388
 
1389
1389
  // src/auth/utils/logger.ts
1390
1390
  import { createConsola as createConsola3 } from "consola";
1391
- var isDevelopment = process.env.NODE_ENV === "development";
1391
+
1392
+ // src/auth/utils/env.ts
1393
+ var isDev = process.env.NODE_ENV === "development";
1394
+ var isProd = process.env.NODE_ENV === "production";
1395
+
1396
+ // src/auth/utils/logger.ts
1392
1397
  var isStaticBuild2 = process.env.NEXT_PUBLIC_STATIC_BUILD === "true";
1393
- var showLogs = isDevelopment || isStaticBuild2;
1398
+ var showLogs = isDev || isStaticBuild2;
1394
1399
  var logger = createConsola3({
1395
1400
  level: showLogs ? 4 : 1
1396
1401
  // dev: debug, production: errors only