Fix InteropClient testasset

This commit is contained in:
Will Godbe 2020-08-28 09:13:19 -07:00
parent 663915b742
commit 72a7635b62
1 changed files with 2 additions and 2 deletions

View File

@ -95,8 +95,8 @@ namespace InteropTestsClient
var services = new ServiceCollection();
services.AddLogging(configure =>
{
configure.SetMinimumLevel(Microsoft.Extensions.Logging.LogLevel.Trace);
configure.AddSimpleConsole(loggerOptions =>
configure.SetMinimumLevel(LogLevel.Trace);
configure.AddConsole(loggerOptions =>
{
#pragma warning disable CS0618 // Type or member is obsolete
loggerOptions.IncludeScopes = true;