aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/Devices/DeviceRepository.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-11-05 14:28:41 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-11-05 14:28:41 -0500
commitb5842f9f193959d0d780c9585851c7ea827cc08c (patch)
tree8d4518623027ccbdfa90acd2b4b1b94c0f252c6b /MediaBrowser.Server.Implementations/Devices/DeviceRepository.cs
parentccb4e5851963a95faa50f9c9403078a275e4cc7d (diff)
rework build scripts
Diffstat (limited to 'MediaBrowser.Server.Implementations/Devices/DeviceRepository.cs')
-rw-r--r--MediaBrowser.Server.Implementations/Devices/DeviceRepository.cs5
1 files changed, 3 insertions, 2 deletions
diff --git a/MediaBrowser.Server.Implementations/Devices/DeviceRepository.cs b/MediaBrowser.Server.Implementations/Devices/DeviceRepository.cs
index f10244a2c..14a877e78 100644
--- a/MediaBrowser.Server.Implementations/Devices/DeviceRepository.cs
+++ b/MediaBrowser.Server.Implementations/Devices/DeviceRepository.cs
@@ -20,14 +20,15 @@ namespace MediaBrowser.Server.Implementations.Devices
private readonly IApplicationPaths _appPaths;
private readonly IJsonSerializer _json;
- private ILogger _logger;
+ private readonly ILogger _logger;
private ConcurrentBag<DeviceInfo> _devices;
- public DeviceRepository(IApplicationPaths appPaths, IJsonSerializer json)
+ public DeviceRepository(IApplicationPaths appPaths, IJsonSerializer json, ILogger logger)
{
_appPaths = appPaths;
_json = json;
+ _logger = logger;
}
private string GetDevicesPath()