Skip to content

Commit

Permalink
Rename according to a review note
Browse files Browse the repository at this point in the history
  • Loading branch information
kuznetsov.as committed Aug 31, 2023
1 parent 9c2874f commit 6343d86
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Vostok.Logging.Microsoft/PublicAPI.Shipped.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const Vostok.Logging.Microsoft.Helpers.MicrosoftLogScopes.HostingLogScopeOld = "
const Vostok.Logging.Microsoft.Helpers.MicrosoftLogScopes.ViewComponentLogScope = "Microsoft.AspNetCore.Mvc.ViewFeatures.MvcViewFeaturesLoggerExtensions+ViewComponentLogScope" -> string
static Vostok.Logging.Microsoft.VostokLoggerExtensions.AddVostok(this Microsoft.Extensions.Logging.ILoggerFactory factory, Vostok.Logging.Abstractions.ILog log) -> Microsoft.Extensions.Logging.ILoggerFactory
static Vostok.Logging.Microsoft.VostokLoggerExtensions.AddVostok(this Microsoft.Extensions.Logging.ILoggingBuilder builder, Vostok.Logging.Abstractions.ILog log) -> Microsoft.Extensions.Logging.ILoggingBuilder
static Vostok.Logging.Microsoft.VostokLoggerExtensions.CreateLog(this Microsoft.Extensions.Logging.ILoggerFactory factory, string categoryName) -> Vostok.Logging.Microsoft.MicrosoftLog
static Vostok.Logging.Microsoft.VostokLoggerExtensions.CreateVostokMicrosoftLog(this Microsoft.Extensions.Logging.ILoggerFactory factory, string categoryName) -> Vostok.Logging.Microsoft.MicrosoftLog
Vostok.Logging.Microsoft.Helpers.MicrosoftLogScopes
Vostok.Logging.Microsoft.MicrosoftLog
Vostok.Logging.Microsoft.MicrosoftLog.ForContext(string context) -> Vostok.Logging.Abstractions.ILog
Expand Down
2 changes: 1 addition & 1 deletion Vostok.Logging.Microsoft/VostokLoggerExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public static ILoggingBuilder AddVostok([NotNull] this ILoggingBuilder builder,
/// <para>Create a new <see cref="MicrosoftLog"/> with given <paramref name="categoryName"/> from the <paramref name="factory"/></para>
/// </summary>
[NotNull]
public static MicrosoftLog CreateLog([NotNull] this ILoggerFactory factory, string categoryName)
public static MicrosoftLog CreateVostokMicrosoftLog([NotNull] this ILoggerFactory factory, string categoryName)
{
var logger = factory.CreateLogger(categoryName);
return new MicrosoftLog(logger);
Expand Down

0 comments on commit 6343d86

Please sign in to comment.