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.Controller/Library/Profiler.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.Controller/Library/Profiler.cs')
| -rw-r--r-- | MediaBrowser.Controller/Library/Profiler.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Library/Profiler.cs b/MediaBrowser.Controller/Library/Profiler.cs index 9fe175a7c..46a97d181 100644 --- a/MediaBrowser.Controller/Library/Profiler.cs +++ b/MediaBrowser.Controller/Library/Profiler.cs @@ -28,7 +28,7 @@ namespace MediaBrowser.Controller.Library /// </summary> /// <param name="name">The name.</param> /// <param name="logger">The logger.</param> - public Profiler(string name, ILogger logger) + public Profiler(string name, ILogger<Profiler> logger) { this._name = name; |
