How do we get more information about the JSON De-serialization exceptions when ServiceStack’s JSON Serializer is configured to throw on exceptions with:
JsConfig.ThrowOnDeserializationError = true;
By default the JSON Serializer will log and ignore non-critical exceptions or can be configured to throw with the above config.
When ServiceStack’s JSON Serializer is configured to throw when it encounters a de-serialization error, with:
It captures the information it was able to de-serialize and stores them in the
ex.DataDictionary in the thrown Serialization Exception.