We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6afdffe commit 2c370d6Copy full SHA for 2c370d6
packages/types/src/logger.ts
@@ -6,7 +6,7 @@
6
* @example new Logger({logLevel: 'warn'}) will print all the warn and error
7
* message.
8
*/
9
-export type LogLevel = "all" | "log" | "info" | "warn" | "error" | "off";
+export type LogLevel = "all" | "trace" | "debug" | "log" | "info" | "warn" | "error" | "off";
10
11
/**
12
* An object consumed by Logger constructor to initiate a logger object.
@@ -21,6 +21,7 @@ export interface LoggerOptions {
21
* throughout the middleware stack.
22
23
export interface Logger {
24
+ trace(...content: any[]): void;
25
debug(...content: any[]): void;
26
info(...content: any[]): void;
27
warn(...content: any[]): void;
0 commit comments