mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
improved exception logging
This commit is contained in:
parent
54a5d63a61
commit
82664bdae8
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user