logSize property
Get the log size.
This method returns the size of the log file in bytes. The size is calculated based on the entire log content, including sensor data, metadata, and any additional recorded information.
Returns
- The log size in bytes
Throws
- An exception if it fails
Implementation
int get logSize {
final OperationResult resultString = objectMethod(
_pointerId,
'LogMetadata',
'getLogSize',
);
return resultString['result'];
}