Browse Source

Added an overload for LogException to not have to pass in a message

LukePulverenti Luke Pulverenti luke pulverenti 13 years ago
parent
commit
25b248eb7f
1 changed files with 5 additions and 0 deletions
  1. 5 0
      MediaBrowser.Common/Logging/Logger.cs

+ 5 - 0
MediaBrowser.Common/Logging/Logger.cs

@@ -21,6 +21,11 @@ namespace MediaBrowser.Common.Logging
             LoggerInstance.LogError(message, paramList);
             LoggerInstance.LogError(message, paramList);
         }
         }
 
 
+        public static void LogException(Exception ex, params object[] paramList)
+        {
+            LogException(string.Empty, ex, paramList);
+        }
+
         public static void LogException(string message, Exception ex, params object[] paramList)
         public static void LogException(string message, Exception ex, params object[] paramList)
         {
         {
             LoggerInstance.LogException(message, ex, paramList);
             LoggerInstance.LogException(message, ex, paramList);