mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
Error printing improvement. Removed some vestigial members
This commit is contained in:
parent
412d854160
commit
907b020db5
@ -335,11 +335,9 @@ namespace Wabbajack
|
||||
}
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
{
|
||||
Utils.Error(ex, $"Encountered error, can't continue");
|
||||
while (ex.InnerException != null) ex = ex.InnerException;
|
||||
Utils.Log(ex.StackTrace);
|
||||
Utils.Log(ex.ToString());
|
||||
Utils.Log($"{ex.Message} - Can't continue");
|
||||
Completed = ErrorResponse.Fail(ex);
|
||||
}
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user