API
Storing handled exceptions
try
{
var product = new Product();
product.convertData(dataFile);
}
catch (Exception e){
// The exception will be recorded by RevDeBug
RevDeBugAPI.Snapshot.RecordException(e);
}Recordings of complex objects
var product = new Product();
product.convertData(dataFile);
// The object will be recorded by RevDeBug
RevDeBugAPI.RecordObject(product);Using the RecordSnapshot function
How to add RevDeBug Trace ID to your logs
How to add custom tags to span in Trace
Last updated