aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Library/Profiler.cs
diff options
context:
space:
mode:
authorBond-009 <bond.009@outlook.com>2020-03-10 15:04:35 +0100
committerGitHub <noreply@github.com>2020-03-10 15:04:35 +0100
commita7e1a5c96ae636baac898689115ac7288ed2af02 (patch)
tree0e4581457fb8d3b6cad44bb9e9122c48e37f0d3a /MediaBrowser.Controller/Library/Profiler.cs
parent12f2baa3d812d43d055237ef72496cb77ef652ad (diff)
parent9aa259eb95bcb77fd1c1c7c4c115cbf6dcda7286 (diff)
Merge pull request #2506 from mark-monteiro/inject-loggers-with-context
Inject loggers with context using ILogger<T>
Diffstat (limited to 'MediaBrowser.Controller/Library/Profiler.cs')
-rw-r--r--MediaBrowser.Controller/Library/Profiler.cs2
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;