Skip to content

Commit 2a0c356

Browse files
committed
Added off to log level default levels
1 parent dc00d02 commit 2a0c356

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

src/Exceptionless.Web/ClientApp/src/lib/features/events/models/event-data.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ export interface ITargetErrorData extends Record<string, string | undefined> {
5656
Method?: string;
5757
}
5858

59-
export type LogLevel = 'debug' | 'error' | 'fatal' | 'info' | 'trace' | 'warn' | string;
59+
export type LogLevel = 'debug' | 'error' | 'fatal' | 'info' | 'off' | 'trace' | 'warn' | string;
6060

6161
export interface ManualStackingInfo {
6262
signature_data?: Record<string, string>;

src/Exceptionless.Web/ClientApp/src/lib/features/events/options.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,5 +58,9 @@ export const logLevels: DropDownItem<LogLevel>[] = [
5858
{
5959
label: 'Fatal',
6060
value: 'fatal'
61+
},
62+
{
63+
label: 'Off',
64+
value: 'off'
6165
}
6266
];

0 commit comments

Comments
 (0)