From c84cf7e452857419197b63a44194d532cd8c8c74 Mon Sep 17 00:00:00 2001 From: Lindsay Bec Date: Thu, 8 Jan 2026 15:40:09 +1100 Subject: [PATCH] Change log level from Debug to Info --- source/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/Program.cs b/source/Program.cs index 11cc9f9..d3c4826 100644 --- a/source/Program.cs +++ b/source/Program.cs @@ -39,7 +39,7 @@ public static async Task Main(string[] args) .Enrich.WithProperty("ApplicationSet", "TeamCityBuildStatsScraper") .Enrich.WithProperty("Application", "TeamCityBuildStatsScraper") .Enrich.WithProperty("Version", appVersion) - .WriteTo.Console(LogEventLevel.Debug); + .WriteTo.Console(LogEventLevel.Information); if (!string.IsNullOrEmpty(config["SEQ_URL"])) loggerConfiguration.WriteTo.Seq(config["SEQ_URL"], apiKey: config["SEQ_API_KEY"], controlLevelSwitch: levelSwitch);