mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
More exception info
This commit is contained in:
parent
75ce6d42d0
commit
6ed9e09451
1 changed files with 3 additions and 0 deletions
|
|
@ -88,8 +88,11 @@ namespace Wox.Infrastructure.Logger
|
|||
|
||||
do
|
||||
{
|
||||
logger.Error($"Exception fulle name:\n <{e.GetType().FullName}>");
|
||||
logger.Error($"Exception message:\n <{e.Message}>");
|
||||
logger.Error($"Exception stack trace:\n <{e.StackTrace}>");
|
||||
logger.Error($"Exception source:\n <{e.Source}>");
|
||||
logger.Error($"Exception target site:\n <{e.TargetSite}>");
|
||||
e = e.InnerException;
|
||||
} while (e != null);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue