mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-21 10:01:27 -07:00
Add verbosity to error messages
This commit is contained in:
parent
cec5c58e7c
commit
57ead741f7
@ -104,7 +104,7 @@ namespace Bloxstrap
|
|||||||
Logger.WriteLine($"[App::OnStartup] {e.Exception}");
|
Logger.WriteLine($"[App::OnStartup] {e.Exception}");
|
||||||
|
|
||||||
if (!IsQuiet)
|
if (!IsQuiet)
|
||||||
Settings.Prop.BootstrapperStyle.GetNew().ShowError($"{e.Exception.GetType()}: {e.Exception.Message}");
|
Settings.Prop.BootstrapperStyle.GetNew().ShowError(e.Exception.ToString());
|
||||||
|
|
||||||
Terminate(Bootstrapper.ERROR_INSTALL_FAILURE);
|
Terminate(Bootstrapper.ERROR_INSTALL_FAILURE);
|
||||||
}
|
}
|
||||||
@ -322,7 +322,7 @@ namespace Bloxstrap
|
|||||||
throw t.Exception;
|
throw t.Exception;
|
||||||
#else
|
#else
|
||||||
var exception = t.Exception.InnerExceptions.Count >= 1 ? t.Exception.InnerExceptions[0] : t.Exception;
|
var exception = t.Exception.InnerExceptions.Count >= 1 ? t.Exception.InnerExceptions[0] : t.Exception;
|
||||||
dialog?.ShowError($"{exception.GetType()}: {exception.Message}");
|
dialog?.ShowError(t.Exception.ToString());
|
||||||
Terminate(Bootstrapper.ERROR_INSTALL_FAILURE);
|
Terminate(Bootstrapper.ERROR_INSTALL_FAILURE);
|
||||||
#endif
|
#endif
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user