Improve IHttpClient factories (#20)

Codestyle fixes
Setup CODEOWNERS
Setup dependabot
This commit is contained in:
2022-09-06 15:49:07 +02:00
committed by GitHub
parent 3c741ab969
commit e6a06915cd
99 changed files with 8108 additions and 7558 deletions
@@ -1,13 +1,12 @@
using Microsoft.Extensions.Logging;
using System.Logging;
namespace System.Extensions
namespace System.Extensions;
public static class LoggingExtensions
{
public static class LoggingExtensions
public static ScopedLogger<T> CreateScopedLogger<T>(this ILogger<T> logger, string methodName, string flowIdentifier)
{
public static ScopedLogger<T> CreateScopedLogger<T>(this ILogger<T> logger, string methodName, string flowIdentifier)
{
return ScopedLogger<T>.Create(logger, methodName, flowIdentifier);
}
return ScopedLogger<T>.Create(logger, methodName, flowIdentifier);
}
}