Skip to content

Commit

Permalink
DisallowNull
Browse files Browse the repository at this point in the history
  • Loading branch information
maxkoshevoi committed Apr 1, 2022
1 parent 9ad1486 commit 9654d1d
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
// The .NET Foundation licenses this file to you under the MIT license.

using System;
using System.Diagnostics.CodeAnalysis;
using System.IO;
using System.Runtime.Versioning;
using Microsoft.Extensions.Logging.Abstractions;
Expand All @@ -20,9 +21,11 @@ internal ConsoleLogger(string name!!, ConsoleLoggerProcessor loggerProcessor)
_queueProcessor = loggerProcessor;
}

[DisallowNull]
internal ConsoleFormatter? Formatter { get; set; }
internal IExternalScopeProvider? ScopeProvider { get; set; }

[DisallowNull]
internal ConsoleLoggerOptions? Options { get; set; }

[ThreadStatic]
Expand Down

0 comments on commit 9654d1d

Please sign in to comment.