aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-10-04 16:39:16 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-10-04 16:39:16 -0400
commit82664bdae82ea0a7e13604e06c7356a8f7e828f9 (patch)
treefc4311ba7f355e111e62f9e9d94b5c665e5bddda
parent54a5d63a619eeb78b4e84c626a4c208419be9705 (diff)
improved exception logging
-rw-r--r--MediaBrowser.Common.Implementations/Logging/LogHelper.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/MediaBrowser.Common.Implementations/Logging/LogHelper.cs b/MediaBrowser.Common.Implementations/Logging/LogHelper.cs
index 4afd302d5..91e937ca7 100644
--- a/MediaBrowser.Common.Implementations/Logging/LogHelper.cs
+++ b/MediaBrowser.Common.Implementations/Logging/LogHelper.cs
@@ -47,12 +47,14 @@ namespace MediaBrowser.Common.Implementations.Logging
foreach (var ex in aggregate.InnerExceptions)
{
AppendInnerException(messageText, ex);
+ AppendInnerExceptions(messageText, ex);
}
}
else if (e.InnerException != null)
{
AppendInnerException(messageText, e.InnerException);
+ AppendInnerExceptions(messageText, e.InnerException);
}
}