interface IRecordingVisualizer2 extends ${IVisualizer} {
// Properties
readonly ${totalAmount}: number;
${paused}: boolean;
}
// This interface is not available in managed environment
// This interface is not available in native environment
readonly totalAmount: number;
// This property is not available in managed environment
// This property is not available in native environment
Returns the total number of bytes written to the log file.
paused: boolean;
// This property is not available in managed environment
// This property is not available in native environment
Equals to true
if logging is paused, false
otherwise. Modify this property to pause/resume logging.