mirror of
https://github.com/AlexMacocian/SystemExtensions.git
synced 2026-07-16 06:29:29 +00:00
e6a06915cd
Codestyle fixes Setup CODEOWNERS Setup dependabot
12 lines
342 B
C#
12 lines
342 B
C#
using Microsoft.Extensions.Logging;
|
|
using System.Logging;
|
|
|
|
namespace System.Extensions;
|
|
|
|
public static class LoggingExtensions
|
|
{
|
|
public static ScopedLogger<T> CreateScopedLogger<T>(this ILogger<T> logger, string methodName, string flowIdentifier)
|
|
{
|
|
return ScopedLogger<T>.Create(logger, methodName, flowIdentifier);
|
|
}
|
|
} |