mirror of
https://github.com/Caraxi/mare.client.git
synced 2025-12-12 15:07:22 +01:00
extract partial downloads
This commit is contained in:
parent
f3e9f90f9d
commit
d94cb6f2f4
3 changed files with 60 additions and 35 deletions
|
|
@ -38,8 +38,9 @@ internal sealed class DalamudLogger : ILogger
|
|||
else
|
||||
{
|
||||
StringBuilder sb = new();
|
||||
sb.AppendLine($"{unsupported}[{_name}]{{{(int)logLevel}}} {state}{(_hasModifiedGameFiles ? "." : string.Empty)} {exception?.Message}");
|
||||
sb.AppendLine(exception?.StackTrace);
|
||||
sb.Append($"{unsupported}[{_name}]{{{(int)logLevel}}} {state}{(_hasModifiedGameFiles ? "." : string.Empty)} {exception?.Message}");
|
||||
if (!string.IsNullOrWhiteSpace(exception?.StackTrace))
|
||||
sb.AppendLine(exception?.StackTrace);
|
||||
var innerException = exception?.InnerException;
|
||||
while (innerException != null)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue