Luke Pulverenti 9 年之前
父节点
当前提交
e5122b189f

+ 5 - 1
MediaBrowser.Server.Implementations/LiveTv/EmbyTV/EmbyTV.cs

@@ -482,6 +482,8 @@ namespace MediaBrowser.Server.Implementations.LiveTv.EmbyTV
         {
             var timer = e.Argument;
 
+            _logger.Info("Recording timer fired.");
+            
             try
             {
                 var cancellationTokenSource = new CancellationTokenSource();
@@ -502,7 +504,7 @@ namespace MediaBrowser.Server.Implementations.LiveTv.EmbyTV
                 if (DateTime.UtcNow < timer.EndDate)
                 {
                     const int retryIntervalSeconds = 60;
-                    _logger.Debug("Retrying recording in {0} seconds.", retryIntervalSeconds);
+                    _logger.Info("Retrying recording in {0} seconds.", retryIntervalSeconds);
 
                     _timerProvider.StartTimer(timer, TimeSpan.FromSeconds(retryIntervalSeconds));
                 }
@@ -594,6 +596,8 @@ namespace MediaBrowser.Server.Implementations.LiveTv.EmbyTV
             recording.DateLastUpdated = DateTime.UtcNow;
             _recordingProvider.Update(recording);
 
+            _logger.Info("Beginning recording.");
+            
             try
             {
                 httpRequestOptions.BufferContent = false;

+ 6 - 0
MediaBrowser.WebDashboard/MediaBrowser.WebDashboard.csproj

@@ -324,6 +324,9 @@
     <Content Include="dashboard-ui\thirdparty\emby-icons.html">
       <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
     </Content>
+    <Content Include="dashboard-ui\thirdparty\jquerymobile-1.4.5\jqm.table.css">
+      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
+    </Content>
     <Content Include="dashboard-ui\thirdparty\jquerymobile-1.4.5\jquery.mobile.custom.icons.css">
       <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
     </Content>
@@ -2652,6 +2655,9 @@
     <None Include="dashboard-ui\thirdparty\fontawesome\fonts\FontAwesome.otf">
       <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
     </None>
+    <Content Include="dashboard-ui\thirdparty\jquerymobile-1.4.5\jqm.table.js">
+      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
+    </Content>
     <None Include="dashboard-ui\thirdparty\jquerymobile-1.4.5\jquery.mobile-1.4.5.min.map">
       <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
     </None>