Skip to content

Commit

Permalink
feat(utils): remove LogLevel.trace from Logger interface
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewkeil committed Sep 29, 2023
1 parent 4b6a3cc commit 7f024af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/utils/src/logger.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* Interface of a generic Lodestar logger. For implementations, see `@lodestar/logger`
*/
export type Logger = Record<LogLevel, LogHandler>;
export type Logger = Record<Exclude<LogLevel, LogLevel.trace>, LogHandler>;

export enum LogLevel {
error = "error",
Expand Down

0 comments on commit 7f024af

Please sign in to comment.