diff --git a/src/Skoruba.IdentityServer4.Admin/appsettings.json b/src/Skoruba.IdentityServer4.Admin/appsettings.json index beadc0a33..fd61e62b2 100644 --- a/src/Skoruba.IdentityServer4.Admin/appsettings.json +++ b/src/Skoruba.IdentityServer4.Admin/appsettings.json @@ -10,27 +10,32 @@ "IdentityAdminRedirectUri": "http://localhost:9000/signin-oidc", "IdentityServerBaseUrl": "http://localhost:5000" }, - "Serilog": { - "MinimumLevel": "Error", - "WriteTo": [ - { - "Name": "File", - "Args": { - "path": "Log\\skoruba_admin.txt", - "rollingInterval": "Day" - } - }, - { - "Name": "MSSqlServer", - "Args": { - "connectionString": "Server=(localdb)\\mssqllocaldb;Database=IdentityServer4Admin;Trusted_Connection=True;MultipleActiveResultSets=true", - "tableName": "Log", - "columnOptionsSection": { - "addStandardColumns": [ "LogEvent" ], - "removeStandardColumns": [ "Properties" ] - } - } - } - ] - } + "Serilog": { + "MinimumLevel": { + "Default": "Error", + "Override": { + "Skoruba": "Information" + } + }, + "WriteTo": [ + { + "Name": "File", + "Args": { + "path": "Log\\skoruba_admin.txt", + "rollingInterval": "Day" + } + }, + { + "Name": "MSSqlServer", + "Args": { + "connectionString": "Server=(localdb)\\mssqllocaldb;Database=IdentityServer4Admin;Trusted_Connection=True;MultipleActiveResultSets=true", + "tableName": "Log", + "columnOptionsSection": { + "addStandardColumns": [ "LogEvent" ], + "removeStandardColumns": [ "Properties" ] + } + } + } + ] + } } \ No newline at end of file