@lodestar/utils 1.12.0-dev.c3f582375b → 1.12.0-dev.c6291ada65

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.
Files changed (2) hide show
  1. package/lib/logger.d.ts +1 -1
  2. package/package.json +2 -2
package/lib/logger.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * Interface of a generic Lodestar logger. For implementations, see `@lodestar/logger`
3
3
  */
4
- export type Logger = Record<LogLevel, LogHandler>;
4
+ export type Logger = Record<Exclude<LogLevel, LogLevel.trace>, LogHandler>;
5
5
  export declare enum LogLevel {
6
6
  error = "error",
7
7
  warn = "warn",
package/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "bugs": {
12
12
  "url": "https://github.com/ChainSafe/lodestar/issues"
13
13
  },
14
- "version": "1.12.0-dev.c3f582375b",
14
+ "version": "1.12.0-dev.c6291ada65",
15
15
  "type": "module",
16
16
  "exports": "./lib/index.js",
17
17
  "files": [
@@ -55,5 +55,5 @@
55
55
  "beacon",
56
56
  "blockchain"
57
57
  ],
58
- "gitHead": "12e31edab689870127e9cc820f17690c67ce45b9"
58
+ "gitHead": "b1e04c16cbd647aed9c240e645e2f0d356a5f79a"
59
59
  }