Skip to content

Commit

Permalink
explicitly set error levels
Browse files Browse the repository at this point in the history
  • Loading branch information
aspriddell committed Jul 3, 2023
1 parent 10d28e0 commit e95fbdf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DragonFruit.Kaplan/App.axaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public override void Initialize()
o.AddEventLog(new EventLogSettings
{
SourceName = Program.AppTitle,
Filter = (_, level) => level >= LogLevel.Warning
Filter = (_, level) => level is LogLevel.Warning or LogLevel.Error or LogLevel.Critical
});

o.AddSentry(s =>
Expand Down

0 comments on commit e95fbdf

Please sign in to comment.