diff options
| author | Mark Monteiro <marknr.monteiro@protonmail.com> | 2020-03-03 23:07:10 +0100 |
|---|---|---|
| committer | Mark Monteiro <marknr.monteiro@protonmail.com> | 2020-03-03 23:07:10 +0100 |
| commit | b67e9cde8c2fa17d2bef5c7c81a6507195a7c1ff (patch) | |
| tree | 0c034a55e6e606bc8f9876fc4529403385e2c709 /MediaBrowser.Api/ApiEntryPoint.cs | |
| parent | 5276c75cdeb079cd0b24c4b2dc574a584d5817b6 (diff) | |
Replace ILogger with ILogger<T> wherever possible
Log entries will contain additional class context when using this interface
Diffstat (limited to 'MediaBrowser.Api/ApiEntryPoint.cs')
| -rw-r--r-- | MediaBrowser.Api/ApiEntryPoint.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Api/ApiEntryPoint.cs b/MediaBrowser.Api/ApiEntryPoint.cs index 7d3546eb7..4bd13df00 100644 --- a/MediaBrowser.Api/ApiEntryPoint.cs +++ b/MediaBrowser.Api/ApiEntryPoint.cs @@ -61,7 +61,7 @@ namespace MediaBrowser.Api /// <param name="fileSystem">The file system.</param> /// <param name="mediaSourceManager">The media source manager.</param> public ApiEntryPoint( - ILogger logger, + ILogger<ApiEntryPoint> logger, ISessionManager sessionManager, IServerConfigurationManager config, IFileSystem fileSystem, |
