(device: DeviceInfo)
| 415 | } |
| 416 | |
| 417 | function buildNoHttpEntriesNote(device: DeviceInfo): string { |
| 418 | if (isIosFamily(device) && device.kind === 'simulator') { |
| 419 | return 'No HTTP(s) entries were found in recent iOS simulator app logs. If the app only emits non-HTTP diagnostics, inspect logs path or add app-side URLSession/network logging for per-request timing and payload details.'; |
| 420 | } |
| 421 | if (isIosFamily(device)) { |
| 422 | return 'No HTTP(s) entries were found in recent iOS device app logs. iOS network dump only sees what the app emits into Unified Logging for this process.'; |
| 423 | } |
| 424 | return 'No HTTP(s) entries were found in recent session app logs.'; |
| 425 | } |
| 426 | |
| 427 | export async function stopAppLog(appLog: AppLogResult): Promise<void> { |
| 428 | await appLog.stop(); |
no test coverage detected