Skip to content

Instantly share code, notes, and snippets.

View KrzysztofCwalina's full-sized avatar

Krzysztof Cwalina KrzysztofCwalina

  • Microsoft
  • Redmond
View GitHub Profile
@KrzysztofCwalina
KrzysztofCwalina / scm_logging.cs
Last active July 30, 2025 19:05
Logging options
// dotnet package add Microsoft.Extensions.Logging.Console
ClientLoggingOptions loggingOptions = new()
{
EnableLogging = true,
EnableMessageContentLogging = true,
EnableMessageLogging = true,
LoggerFactory = LoggerFactory.Create(builder => builder
.AddConsole()
.SetMinimumLevel(LogLevel.Trace))