Skip to content

Commit

Permalink
Fixed an obsolete usage with Serilog
Browse files Browse the repository at this point in the history
  • Loading branch information
jodydonetti committed Jul 19, 2022
1 parent 0d5c502 commit 5fd2a8a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ private static void SetupSerilogLogger(IServiceCollection services, LogEventLeve

private static void SetupStandardLogger(IServiceCollection services, LogLevel minLevel = LogLevel.Trace)
{
services.AddLogging(configure => configure.SetMinimumLevel(minLevel).AddConsole(options => options.IncludeScopes = true));
services.AddLogging(configure => configure.SetMinimumLevel(minLevel).AddSimpleConsole(options => options.IncludeScopes = true));
}

public static async Task RunAsync()
Expand Down

0 comments on commit 5fd2a8a

Please sign in to comment.