Registering Properties for Transaction Tracing

The standard transaction tracing information consists of information about object creates, deletes, and updates.

You can optionally request that additional information is captured about updates to specific properties, using the enableTransactionTracing method of the Property class with the value true passed as the parameter, as shown in the following code fragment.

Customer::status.enableTransactionTracing(true);

To unregister the property, call the enableTransactionTracing method passing the value false, as shown in the following code fragment.

Customer::status.enableTransactionTracing(false);