protectedLogsList property
Returns a list of logs that are marked as protected.
Protected logs are excluded from automatic deletion policies.
Returns
- A
List<String>containing the file paths of protected logs.
See also:
- markLogProtected — Marks a log as protected.
Implementation
List<String> get protectedLogsList {
final OperationResult resultString = objectMethod(
pointerId,
'RecorderBookmarks',
'getProtectedLogsList',
);
return resultString['result'].cast<String>();
}