From 9f64e4202904105158ac85d70fb701c602584257 Mon Sep 17 00:00:00 2001 From: masoodafar-web Date: Sun, 7 Dec 2025 22:27:28 +0330 Subject: [PATCH] chore: add trailing space to Serilog debug output --- src/BackOffice.BFF.WebApi/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BackOffice.BFF.WebApi/Program.cs b/src/BackOffice.BFF.WebApi/Program.cs index 03bd5e0..9e0ba33 100644 --- a/src/BackOffice.BFF.WebApi/Program.cs +++ b/src/BackOffice.BFF.WebApi/Program.cs @@ -28,7 +28,7 @@ var logger = new LoggerConfiguration() .CreateLogger(); builder.Logging.AddSerilog(logger); #if DEBUG -Serilog.Debugging.SelfLog.Enable(msg => Console.WriteLine(msg)); +Serilog.Debugging.SelfLog.Enable(msg => Console.WriteLine(msg)); #endif // Additional configuration is required to successfully run gRPC on macOS. // For instructions on how to configure Kestrel and gRPC clients on macOS, visit https://go.microsoft.com/fwlink/?linkid=2099682