refactor(automation): remove browser automation, use OS-level automation only

This commit is contained in:
2025-11-22 17:57:35 +01:00
parent 99fa06e12b
commit 84800c663a
44 changed files with 110 additions and 5125 deletions

View File

@@ -94,7 +94,11 @@ export class PermissionService {
platform,
};
this.logger.debug('Permission status retrieved', this.cachedStatus);
this.logger.debug('Permission status retrieved', {
accessibility: this.cachedStatus.accessibility,
screenRecording: this.cachedStatus.screenRecording,
platform: this.cachedStatus.platform,
});
return this.cachedStatus;
}