Skip to content

Commit 9518114

Browse files
authored
fix: fixes levels not matching the new set (#3495)
1 parent 65ef1d3 commit 9518114

File tree

1 file changed

+1
-11
lines changed

1 file changed

+1
-11
lines changed

assets/composable/logContext.ts

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,7 @@ type LogContext = {
1111
showHostname: boolean;
1212
};
1313

14-
export const allLevels: Level[] = [
15-
"info",
16-
"debug",
17-
"warn",
18-
"error",
19-
"fatal",
20-
"trace",
21-
"warning",
22-
"critical",
23-
"unknown",
24-
];
14+
export const allLevels: Level[] = ["info", "debug", "warn", "error", "fatal", "trace", "unknown"];
2515

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

0 commit comments

Comments
 (0)