Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ public readonly partial struct LogEntry<TState>
public Microsoft.Extensions.Logging.LogLevel LogLevel { get { throw null; } }
public TState State { get { throw null; } }
}
public partial class NullLogger : Microsoft.Extensions.Logging.ILogger
public sealed partial class NullLogger : Microsoft.Extensions.Logging.ILogger
{
internal NullLogger() { }
public static Microsoft.Extensions.Logging.Abstractions.NullLogger Instance { get { throw null; } }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace Microsoft.Extensions.Logging.Abstractions
/// <summary>
/// Minimalistic logger that does nothing.
/// </summary>
public class NullLogger : ILogger
public sealed class NullLogger : ILogger
{
/// <summary>
/// Returns the shared instance of <see cref="NullLogger"/>.
Expand Down
Loading