aboutsummaryrefslogtreecommitdiff
path: root/Emby.Dlna/Service/BaseControlHandler.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-11-04 19:57:21 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-11-04 19:57:21 -0400
commit25312d7d03af665818cfd2cee2edb549e0e940f2 (patch)
tree2220b08d58fb36b0b581a60cdc167d72e628b916 /Emby.Dlna/Service/BaseControlHandler.cs
parent67ad1db6b77b2c2cb6d81c22808d99564a5f3ebc (diff)
add udp error handling
Diffstat (limited to 'Emby.Dlna/Service/BaseControlHandler.cs')
-rw-r--r--Emby.Dlna/Service/BaseControlHandler.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Dlna/Service/BaseControlHandler.cs b/Emby.Dlna/Service/BaseControlHandler.cs
index df4d29e8b..afc66b1d7 100644
--- a/Emby.Dlna/Service/BaseControlHandler.cs
+++ b/Emby.Dlna/Service/BaseControlHandler.cs
@@ -228,7 +228,7 @@ namespace Emby.Dlna.Service
var headers = string.Join(", ", request.Headers.Select(i => string.Format("{0}={1}", i.Key, i.Value)).ToArray());
builder.AppendFormat("Headers: {0}", headers);
builder.AppendLine();
- builder.Append(request.InputXml);
+ //builder.Append(request.InputXml);
Logger.LogMultiline("Control request", LogSeverity.Debug, builder);
}