diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-10-04 16:39:16 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-10-04 16:39:16 -0400 |
| commit | 82664bdae82ea0a7e13604e06c7356a8f7e828f9 (patch) | |
| tree | fc4311ba7f355e111e62f9e9d94b5c665e5bddda | |
| parent | 54a5d63a619eeb78b4e84c626a4c208419be9705 (diff) | |
improved exception logging
| -rw-r--r-- | MediaBrowser.Common.Implementations/Logging/LogHelper.cs | 2 |
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); } } |
