From 53439e238c69507e79ff034140599a86b03be498 Mon Sep 17 00:00:00 2001 From: Mohammed Izzy Date: Mon, 14 Oct 2024 14:59:23 +0530 Subject: [PATCH] add new log level --- 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;