Merge pull request #41 from MZade/master

Log exception even if exception message is empty
This commit is contained in:
Tomek Melissa 2018-04-24 15:50:53 +02:00 коммит произвёл GitHub
Родитель 88c9127ef7 3308c911cb
Коммит a01af090c5
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
6 изменённых файлов: 36 добавлений и 0 удалений

Просмотреть файл

@ -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)
{