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

This commit is contained in:
LukePulverenti Luke Pulverenti luke pulverenti 2012-08-10 23:06:45 -04:00
parent 6ab63eaf95
commit 25b248eb7f

View File

@ -21,6 +21,11 @@ namespace MediaBrowser.Common.Logging
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)
{
LoggerInstance.LogException(message, ex, paramList);