(command: string)
| 45 | } |
| 46 | |
| 47 | function isManagedAppLogCommand(command: string): boolean { |
| 48 | const normalized = command.toLowerCase().replaceAll('\\', '/'); |
| 49 | return ( |
| 50 | normalized.includes('log stream') || |
| 51 | normalized.includes('logcat') || |
| 52 | normalized.includes('devicectl device process launch') |
| 53 | ); |
| 54 | } |
| 55 | |
| 56 | function shouldTerminateStoredProcess(meta: StoredAppLogProcessMeta): boolean { |
| 57 | const currentStartTime = readProcessStartTime(meta.pid); |
no outgoing calls
no test coverage detected