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 14:17:52 -0500 |
| commit | af599ed5d74c886d390ea7a79123f0443543d0c7 (patch) | |
| tree | fbea7deb06877eb828341ea412381d85f9f0f154 | |
| parent | 8a50392ba73605fcd5a22c299352845bae0b7700 (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 7002a37035..08c6b0ba47 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); |
