Merge pull request #41 from MZade/master
Log exception even if exception message is empty
This commit is contained in:
Коммит
a01af090c5
|
@ -129,7 +129,13 @@ namespace RecurringIntegrationsScheduler.Job
|
|||
if (Log.IsDebugEnabled)
|
||||
{
|
||||
if (!string.IsNullOrEmpty(ex.Message))
|
||||
{
|
||||
Log.Error(ex.Message, ex);
|
||||
}
|
||||
else
|
||||
{
|
||||
Log.Error("Uknown exception", ex);
|
||||
}
|
||||
|
||||
while (ex.InnerException != null)
|
||||
{
|
||||
|
|
|
@ -119,7 +119,13 @@ namespace RecurringIntegrationsScheduler.Job
|
|||
if (Log.IsDebugEnabled)
|
||||
{
|
||||
if (!string.IsNullOrEmpty(ex.Message))
|
||||
{
|
||||
Log.Error(ex.Message, ex);
|
||||
}
|
||||
else
|
||||
{
|
||||
Log.Error("Uknown exception", ex);
|
||||
}
|
||||
|
||||
while (ex.InnerException != null)
|
||||
{
|
||||
|
|
|
@ -109,7 +109,13 @@ namespace RecurringIntegrationsScheduler.Job
|
|||
if (Log.IsDebugEnabled)
|
||||
{
|
||||
if (!string.IsNullOrEmpty(ex.Message))
|
||||
{
|
||||
Log.Error(ex.Message, ex);
|
||||
}
|
||||
else
|
||||
{
|
||||
Log.Error("Uknown exception", ex);
|
||||
}
|
||||
|
||||
while (ex.InnerException != null)
|
||||
{
|
||||
|
|
|
@ -122,7 +122,13 @@ namespace RecurringIntegrationsScheduler.Job
|
|||
if (Log.IsDebugEnabled)
|
||||
{
|
||||
if (!string.IsNullOrEmpty(ex.Message))
|
||||
{
|
||||
Log.Error(ex.Message, ex);
|
||||
}
|
||||
else
|
||||
{
|
||||
Log.Error("Uknown exception", ex);
|
||||
}
|
||||
|
||||
while (ex.InnerException != null)
|
||||
{
|
||||
|
|
|
@ -120,7 +120,13 @@ namespace RecurringIntegrationsScheduler.Job
|
|||
if (Log.IsDebugEnabled)
|
||||
{
|
||||
if (!string.IsNullOrEmpty(ex.Message))
|
||||
{
|
||||
Log.Error(ex.Message, ex);
|
||||
}
|
||||
else
|
||||
{
|
||||
Log.Error("Uknown exception", ex);
|
||||
}
|
||||
|
||||
while (ex.InnerException != null)
|
||||
{
|
||||
|
|
|
@ -118,7 +118,13 @@ namespace RecurringIntegrationsScheduler.Job
|
|||
if (Log.IsDebugEnabled)
|
||||
{
|
||||
if (!string.IsNullOrEmpty(ex.Message))
|
||||
{
|
||||
Log.Error(ex.Message, ex);
|
||||
}
|
||||
else
|
||||
{
|
||||
Log.Error("Uknown exception", ex);
|
||||
}
|
||||
|
||||
while (ex.InnerException != null)
|
||||
{
|
||||
|
|
Загрузка…
Ссылка в новой задаче