deleteLog method
- String logPath
Deletes the specified log file.
Parameters
- IN logPath The path to the file to be marked as protected.
Returns
- GemError.success If operation succeeds.
- GemError.general If operation fails.
Throws
- An exception if it fails
Implementation
GemError deleteLog(final String logPath) {
final OperationResult resultString = objectMethod(
_pointerId,
'RecorderBookmarks',
'deleteLog',
args: logPath,
);
return GemErrorExtension.fromCode(resultString['result']);
}