From e7937fe7eeda220b731e68680daf0f606baa896f Mon Sep 17 00:00:00 2001 From: masoodafar-web Date: Sun, 7 Dec 2025 20:09:01 +0330 Subject: [PATCH] fix: Remove trailing whitespace in Seq config --- src/CMSMicroservice.WebApi/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CMSMicroservice.WebApi/Program.cs b/src/CMSMicroservice.WebApi/Program.cs index 2b90023..a3aac6b 100644 --- a/src/CMSMicroservice.WebApi/Program.cs +++ b/src/CMSMicroservice.WebApi/Program.cs @@ -42,7 +42,7 @@ var logger = new LoggerConfiguration() // AutoCreateSqlTable = true // }) .WriteTo.Seq(seqServerUrl, - apiKey: string.IsNullOrEmpty(seqApiKey) ? null : seqApiKey, + apiKey: string.IsNullOrEmpty(seqApiKey) ? null : seqApiKey, controlLevelSwitch: levelSwitch) .CreateLogger(); builder.Logging.AddSerilog(logger);