Closed
Description
The README states:
@x - the exception associated with the event, if any, as an Exception
which implies to me that you are able to access the properties of that exception.
In reality however, @x
is simply a ToString()
'd version of the exception, and to get hold of its properties you need to write a custom ILogEventEnricher
. It would be extremely helpful to update the README with this information.