From: AeonLucid Date: Sat, 26 Sep 2020 04:04:58 +0000 (+0200) Subject: Fix automated builds X-Git-Tag: v1.1.0~1^2~38 X-Git-Url: https://git.deb.at/?a=commitdiff_plain;h=38435c9add56fd22459973e8cf47bb9653f72d0f;p=rhonda%2Fimpostor.git Fix automated builds --- diff --git a/src/Impostor.Server/Program.cs b/src/Impostor.Server/Program.cs index 984c314..fea258a 100644 --- a/src/Impostor.Server/Program.cs +++ b/src/Impostor.Server/Program.cs @@ -7,6 +7,7 @@ using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Hosting; using Serilog; +using Serilog.Events; namespace Impostor.Server { @@ -17,6 +18,7 @@ namespace Impostor.Server Log.Logger = new LoggerConfiguration() #if DEBUG .MinimumLevel.Verbose() + .MinimumLevel.Override("Microsoft", LogEventLevel.Debug) #else .MinimumLevel.Information() .MinimumLevel.Override("Microsoft", LogEventLevel.Warning)