diff --git a/src/Serilog.Sinks.Console/ConsoleLoggerConfigurationExtensions.cs b/src/Serilog.Sinks.Console/ConsoleLoggerConfigurationExtensions.cs index 390b174..3688fd1 100644 --- a/src/Serilog.Sinks.Console/ConsoleLoggerConfigurationExtensions.cs +++ b/src/Serilog.Sinks.Console/ConsoleLoggerConfigurationExtensions.cs @@ -50,6 +50,8 @@ public static class ConsoleLoggerConfigurationExtensions /// uses . /// Applies the selected or default theme even when output redirection is detected. /// Configuration object allowing method chaining. + /// When is null + /// When is null public static LoggerConfiguration Console( this LoggerSinkConfiguration sinkConfiguration, LogEventLevel restrictedToMinimumLevel = LevelAlias.Minimum, @@ -89,6 +91,8 @@ public static class ConsoleLoggerConfigurationExtensions /// to be changed at runtime. /// Specifies the level at which events will be written to standard error. /// Configuration object allowing method chaining. + /// When is null + /// When is null public static LoggerConfiguration Console( this LoggerSinkConfiguration sinkConfiguration, ITextFormatter formatter, diff --git a/src/Serilog.Sinks.Console/Sinks/SystemConsole/Themes/AnsiConsoleTheme.cs b/src/Serilog.Sinks.Console/Sinks/SystemConsole/Themes/AnsiConsoleTheme.cs index 292590a..ea95ee3 100644 --- a/src/Serilog.Sinks.Console/Sinks/SystemConsole/Themes/AnsiConsoleTheme.cs +++ b/src/Serilog.Sinks.Console/Sinks/SystemConsole/Themes/AnsiConsoleTheme.cs @@ -47,6 +47,7 @@ public class AnsiConsoleTheme : ConsoleTheme /// Construct a theme given a set of styles. /// /// Styles to apply within the theme. + /// When is null public AnsiConsoleTheme(IReadOnlyDictionary styles) { if (styles is null) throw new ArgumentNullException(nameof(styles)); diff --git a/src/Serilog.Sinks.Console/Sinks/SystemConsole/Themes/SystemConsoleTheme.cs b/src/Serilog.Sinks.Console/Sinks/SystemConsole/Themes/SystemConsoleTheme.cs index bfec793..a4518c8 100644 --- a/src/Serilog.Sinks.Console/Sinks/SystemConsole/Themes/SystemConsoleTheme.cs +++ b/src/Serilog.Sinks.Console/Sinks/SystemConsole/Themes/SystemConsoleTheme.cs @@ -44,6 +44,7 @@ public class SystemConsoleTheme : ConsoleTheme /// Construct a theme given a set of styles. /// /// Styles to apply within the theme. + /// When is null public SystemConsoleTheme(IReadOnlyDictionary styles) { if (styles is null) throw new ArgumentNullException(nameof(styles));