From 96e8f053b56a385dc0f8c8e2c81fd0ac23794692 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Mon, 20 May 2013 23:13:30 -0400 Subject: [PATCH] tone down logging --- .../HttpServer/ServerLogger.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/MediaBrowser.Server.Implementations/HttpServer/ServerLogger.cs b/MediaBrowser.Server.Implementations/HttpServer/ServerLogger.cs index 836b8502a7..011e64df2f 100644 --- a/MediaBrowser.Server.Implementations/HttpServer/ServerLogger.cs +++ b/MediaBrowser.Server.Implementations/HttpServer/ServerLogger.cs @@ -79,7 +79,8 @@ namespace MediaBrowser.Server.Implementations.HttpServer /// The message. public void Debug(object message) { - _logger.Debug(GetMesssage(message)); + // Way too verbose. Can always make this configurable if needed again. + //_logger.Debug(GetMesssage(message)); } /// @@ -89,7 +90,8 @@ namespace MediaBrowser.Server.Implementations.HttpServer /// The args. public void DebugFormat(string format, params object[] args) { - _logger.Debug(format, args); + // Way too verbose. Can always make this configurable if needed again. + //_logger.Debug(format, args); } ///