Skip to content

Commit

Permalink
fix: fixes levels not matching the new set (#3495)
Browse files Browse the repository at this point in the history
  • Loading branch information
amir20 authored Dec 31, 2024
1 parent 65ef1d3 commit 9518114
Showing 1 changed file with 1 addition and 11 deletions.
12 changes: 1 addition & 11 deletions assets/composable/logContext.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,7 @@ type LogContext = {
showHostname: boolean;
};

export const allLevels: Level[] = [
"info",
"debug",
"warn",
"error",
"fatal",
"trace",
"warning",
"critical",
"unknown",
];
export const allLevels: Level[] = ["info", "debug", "warn", "error", "fatal", "trace", "unknown"];

// export for testing
export const loggingContextKey = Symbol("loggingContext") as InjectionKey<LogContext>;
Expand Down

0 comments on commit 9518114

Please sign in to comment.