mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-11 18:20:23 +01:00
adjust dlna logging
This commit is contained in:
@@ -27,14 +27,16 @@ namespace MediaBrowser.Dlna.Service
|
||||
{
|
||||
try
|
||||
{
|
||||
if (Config.GetDlnaConfiguration().EnableDebugLogging)
|
||||
var enableDebugLogging = Config.GetDlnaConfiguration().EnableDebugLogging;
|
||||
|
||||
if (enableDebugLogging)
|
||||
{
|
||||
LogRequest(request);
|
||||
}
|
||||
|
||||
var response = ProcessControlRequestInternal(request);
|
||||
|
||||
if (Config.GetDlnaConfiguration().EnableDebugLogging)
|
||||
if (enableDebugLogging)
|
||||
{
|
||||
LogResponse(response);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user