File: DebugLoggerProvider.cs | Web Access |
Project: src\src\libraries\Microsoft.Extensions.Logging.Debug\src\Microsoft.Extensions.Logging.Debug.csproj (Microsoft.Extensions.Logging.Debug) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace Microsoft.Extensions.Logging.Debug { /// <summary> /// The provider for the <see cref="DebugLogger"/>. /// </summary> [ProviderAlias("Debug")] public class DebugLoggerProvider : ILoggerProvider { /// <inheritdoc /> public ILogger CreateLogger(string name) { return new DebugLogger(name); } /// <inheritdoc /> public void Dispose() { } } } |