Skip to content

Commit

Permalink
Fixed logging. (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
Utar94 authored Jul 10, 2024
1 parent b302fb9 commit 98f82ff
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

public record LoggingSettings : ILoggingSettings
{
public LoggingExtent Extent { get; set; } = LoggingExtent.ActivityOnly;
public LoggingExtent Extent { get; set; }
public bool OnlyErrors { get; set; }

public LoggingSettings() : this(LoggingExtent.ActivityOnly, onlyErrors: false)
public LoggingSettings() : this(LoggingExtent.None, onlyErrors: false)
{
}

Expand Down

0 comments on commit 98f82ff

Please sign in to comment.