diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-01-28 01:39:02 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-01-28 01:39:02 -0500 |
| commit | 55128c308a6f2e050926442bbac150992a919202 (patch) | |
| tree | 7fa94fd9aca37fd95549ef7d32f88bd68b1797e3 | |
| parent | 16edb2b2dd25e58d63d636ef1b6d68b7920fba6e (diff) | |
add logging
| -rw-r--r-- | MediaBrowser.Api/UserLibrary/PlaystateService.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/MediaBrowser.Api/UserLibrary/PlaystateService.cs b/MediaBrowser.Api/UserLibrary/PlaystateService.cs index 7002a3703..08c6b0ba4 100644 --- a/MediaBrowser.Api/UserLibrary/PlaystateService.cs +++ b/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); |
