Browse Source

add logging

Luke Pulverenti 9 years ago
parent
commit
55128c308a
1 changed files with 2 additions and 0 deletions
  1. 2 0
      MediaBrowser.Api/UserLibrary/PlaystateService.cs

+ 2 - 0
MediaBrowser.Api/UserLibrary/PlaystateService.cs

@@ -370,6 +370,8 @@ namespace MediaBrowser.Api.UserLibrary
 
         public void Post(ReportPlaybackStopped request)
         {
+            Logger.Debug("ReportPlaybackStopped PlaySessionId: {0}", request.PlaySessionId ?? string.Empty);
+
             if (!string.IsNullOrWhiteSpace(request.PlaySessionId))
             {
                 ApiEntryPoint.Instance.KillTranscodingJobs(AuthorizationContext.GetAuthorizationInfo(Request).DeviceId, request.PlaySessionId, s => true);