| File: LoggerFactoryOptions.cs | Web Access |
| Project: src\runtime\src\libraries\Microsoft.Extensions.Logging\src\Microsoft.Extensions.Logging.csproj (Microsoft.Extensions.Logging) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System.Diagnostics; namespace Microsoft.Extensions.Logging { /// <summary> /// The options for a LoggerFactory. /// </summary> [DebuggerDisplay("ActivityTrackingOptions = {ActivityTrackingOptions}")] public class LoggerFactoryOptions { /// <summary> /// Creates a new <see cref="LoggerFactoryOptions"/> instance. /// </summary> public LoggerFactoryOptions() { } /// <summary> /// Gets or sets <see cref="LoggerFactoryOptions"/> value to indicate which parts of the tracing context information should be included with the logging scopes. /// </summary> public ActivityTrackingOptions ActivityTrackingOptions { get; set; } } }