aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2015-07-30 22:34:15 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2015-07-30 22:34:15 -0400
commit25395c5d82a9136253706a7fed5a552dcc452acd (patch)
tree537cf746ee11cbf37bc446623cdc6e575480e9d1 /MediaBrowser.Server.Implementations
parent901dab5760d2e63e9c98fbe5cdaa816bc105e5b7 (diff)
update stream builder subtitles
Diffstat (limited to 'MediaBrowser.Server.Implementations')
-rw-r--r--MediaBrowser.Server.Implementations/LiveTv/TunerHosts/HdHomerun/HdHomerunDiscovery.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/MediaBrowser.Server.Implementations/LiveTv/TunerHosts/HdHomerun/HdHomerunDiscovery.cs b/MediaBrowser.Server.Implementations/LiveTv/TunerHosts/HdHomerun/HdHomerunDiscovery.cs
index 10baffea6..c74220137 100644
--- a/MediaBrowser.Server.Implementations/LiveTv/TunerHosts/HdHomerun/HdHomerunDiscovery.cs
+++ b/MediaBrowser.Server.Implementations/LiveTv/TunerHosts/HdHomerun/HdHomerunDiscovery.cs
@@ -41,7 +41,7 @@ namespace MediaBrowser.Server.Implementations.LiveTv.TunerHosts.HdHomerun
string location;
if (e.Headers.TryGetValue("Location", out location))
{
- _logger.Debug("HdHomerun found at {0}", location);
+ //_logger.Debug("HdHomerun found at {0}", location);
// Just get the beginning of the url
Uri uri;
@@ -50,7 +50,7 @@ namespace MediaBrowser.Server.Implementations.LiveTv.TunerHosts.HdHomerun
var apiUrl = location.Replace(uri.LocalPath, String.Empty, StringComparison.OrdinalIgnoreCase)
.TrimEnd('/');
- _logger.Debug("HdHomerun api url: {0}", apiUrl);
+ //_logger.Debug("HdHomerun api url: {0}", apiUrl);
AddDevice(apiUrl);
}
}