You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Serialisation errors can be a pain to track down so I wrote this utility
If we could trap any [SerializationException]'s and run the tracer on it, it would give much better feedback on where the issue is.
Very rough code:
try{
//serialise the session
}catch(SerializationException se){
val tracer = SerializationTracer()
tracer.trace(session)
throw new SerializationException(tracer.results(FAIL),se)
}
The text was updated successfully, but these errors were encountered:
Serialisation errors can be a pain to track down so I wrote this utility
If we could trap any [SerializationException]'s and run the tracer on it, it would give much better feedback on where the issue is.
Very rough code:
The text was updated successfully, but these errors were encountered: