Skip to content
This repository was archived by the owner on Jun 21, 2023. It is now read-only.

Commit 7faf3bc

Browse files
Merge pull request #1920 from github/fixes/fix-log-source
Fix log source on IServiceProviderExtensions
2 parents ff10830 + f1a6411 commit 7faf3bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/GitHub.Exports/Extensions/ServiceProviderExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ namespace GitHub.Extensions
88
{
99
public static class IServiceProviderExtensions
1010
{
11-
static readonly ILogger log = LogManager.ForContext<VSServices>();
11+
static readonly ILogger log = LogManager.ForContext(typeof(IServiceProviderExtensions));
1212

1313
/// <summary>
1414
/// Safe variant of GetService that doesn't throw exceptions if the service is

0 commit comments

Comments
 (0)