( context: AndroidNetworkRecoveryContext, recoveredPids: string[], )
| 330 | } |
| 331 | |
| 332 | function buildAndroidRecoveryNote( |
| 333 | context: AndroidNetworkRecoveryContext, |
| 334 | recoveredPids: string[], |
| 335 | ): string { |
| 336 | if (context.reason === 'stale-active') { |
| 337 | return `Session app log stream was still bound to prior Android PID ${context.trackedPid}. Recovered recent Android HTTP entries from adb logcat for PID set ${recoveredPids.join(', ')}.`; |
| 338 | } |
| 339 | return `Session app log stream was inactive. Recovered recent Android HTTP entries from adb logcat for PID set ${recoveredPids.join(', ')}.`; |
| 340 | } |
| 341 | |
| 342 | export async function startAppLog( |
| 343 | device: DeviceInfo, |
no outgoing calls
no test coverage detected