(device: DeviceInfo)
| 191 | } |
| 192 | |
| 193 | export function resolveLogBackend(device: DeviceInfo): LogBackend { |
| 194 | // Routes the platform branch through the PlatformPlugin app-log facet (issue |
| 195 | // #974). Apple/Android carry a `resolveBackend`; linux/web (and any unregistered |
| 196 | // platform) fall through to the historical `'android'` default. The daemon |
| 197 | // app-log routing parity test pins this against the former hand branch. |
| 198 | return tryGetPlugin(device.platform)?.appLog?.resolveBackend(device) ?? 'android'; |
| 199 | } |
| 200 | |
| 201 | export async function readSessionNetworkCapture( |
| 202 | params: SessionNetworkCaptureParams, |
no test coverage detected
searching dependent graphs…