From 5d49f3078f4065e2a49e396a776712ab4db3bbdd Mon Sep 17 00:00:00 2001 From: Mohammed Date: Mon, 14 Oct 2024 16:29:53 +0530 Subject: [PATCH] feat: add new log levels (#642) Co-authored-by: Mohammed Izzy --- src/types/common.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types/common.ts b/src/types/common.ts index ae8ced7e..bb360aa6 100644 --- a/src/types/common.ts +++ b/src/types/common.ts @@ -229,7 +229,7 @@ export type VisibilityConfig = { }; export type LoggingConfig = { - level: 'ERROR' | 'NONE' | 'ALL'; + level: 'ERROR' | 'NONE' | 'ALL' | 'DEBUG' | 'INFO'; enabled?: boolean; excludeVerboseContent?: boolean; retentionInDays?: number;