Skip to content
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public static ILoggingBuilder AddGlobalBuffer(this ILoggingBuilder builder, LogL

private static ILoggingBuilder AddGlobalBufferManager(this ILoggingBuilder builder)
{
_ = builder.Services.AddExtendedLoggerFeactory();
_ = builder.Services.AddExtendedLoggerFactory();

builder.Services.TryAddSingleton<LogBufferingFilterRuleSelector>();
builder.Services.TryAddSingleton<GlobalLogBufferManager>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public static ILoggingBuilder EnableEnrichment(this ILoggingBuilder builder, Act
_ = Throw.IfNull(configure);

_ = builder.Services
.AddExtendedLoggerFeactory()
.AddExtendedLoggerFactory()
.Configure(configure)
.AddOptionsWithValidateOnStart<LoggerEnrichmentOptions, LoggerEnrichmentOptionsValidator>();

Expand All @@ -54,7 +54,7 @@ public static ILoggingBuilder EnableEnrichment(this ILoggingBuilder builder, ICo
_ = Throw.IfNull(section);

_ = builder.Services
.AddExtendedLoggerFeactory()
.AddExtendedLoggerFactory()
.AddOptionsWithValidateOnStart<LoggerEnrichmentOptions, LoggerEnrichmentOptionsValidator>().Bind(section);

return builder;
Expand All @@ -65,7 +65,7 @@ public static ILoggingBuilder EnableEnrichment(this ILoggingBuilder builder, ICo
/// </summary>
/// <param name="services">The <see cref="IServiceCollection" />.</param>
/// <returns>The value of <paramref name="services"/>.</returns>
internal static IServiceCollection AddExtendedLoggerFeactory(this IServiceCollection services)
internal static IServiceCollection AddExtendedLoggerFactory(this IServiceCollection services)
{
_ = Throw.IfNull(services);

Expand Down
Loading