mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-06 03:07:04 +02:00
More exception info
This commit is contained in:
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user