deleteLog method

GemError deleteLog(
  1. String logPath
)

Deletes the specified log file.

Parameters

  • IN logPath The path to the file to be marked as protected.

Returns

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']);
}