File: Log.cs
Web Access
Project: src\src\Libraries\Microsoft.AspNetCore.Diagnostics.Middleware\Microsoft.AspNetCore.Diagnostics.Middleware.csproj (Microsoft.AspNetCore.Diagnostics.Middleware)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
using System;
using Microsoft.Extensions.Logging;
 
namespace Microsoft.AspNetCore.Diagnostics;
 
internal static partial class Log
{
    [LoggerMessage(0, LogLevel.Warning, "Enricher failed: {Enricher}.")]
    internal static partial void EnricherFailed(this ILogger logger, Exception exception, string enricher);
}