diff options
Diffstat (limited to 'MediaBrowser.Common.Implementations/Logging/LogHelper.cs')
| -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); } } |
