MCPcopy Index your code
hub / github.com/callstack/agent-device / buildNoHttpEntriesNote

Function buildNoHttpEntriesNote

src/daemon/app-log.ts:417–425  ·  view source on GitHub ↗
(device: DeviceInfo)

Source from the content-addressed store, hash-verified

415}
416
417function 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
427export async function stopAppLog(appLog: AppLogResult): Promise<void> {
428 await appLog.stop();

Callers 1

Calls 1

isIosFamilyFunction · 0.90

Tested by

no test coverage detected