Skip to content

Commit

Permalink
fix LOG_LEVEL type
Browse files Browse the repository at this point in the history
  • Loading branch information
ptpaterson committed Dec 4, 2024
1 parent d8c8290 commit 1a68e24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util/logging.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export const LOG_LEVELS = {
INFO: "2",
WARN: "3",
ERROR: "4",
};
} as const;
export type LogLevel = (typeof LOG_LEVELS)[keyof typeof LOG_LEVELS];

/**
Expand Down

0 comments on commit 1a68e24

Please sign in to comment.