Skip to content

Commit

Permalink
Fix LogSection
Browse files Browse the repository at this point in the history
  • Loading branch information
YevgeniyShunevych committed Jan 18, 2025
1 parent 7b5f89c commit 3f99b22
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/Atata/Logging/Sections/LogSection.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,8 @@ public LogSection(string message, LogLevel level = LogLevel.Info)
Level = level;
}

protected LogSection()
{
}
protected LogSection() =>
Level = LogLevel.Info;

/// <summary>
/// Gets or sets the message.
Expand Down

0 comments on commit 3f99b22

Please sign in to comment.