Skip to content

Commit

Permalink
Increase log collection timeout to 30s
Browse files Browse the repository at this point in the history
  • Loading branch information
jfberry committed Jan 8, 2024
1 parent d6c7406 commit 6c83566
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/connections/src/lib/deviceControlConnection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ export class DeviceControlConnection extends EventEmitter {
}

async getLogcat(): Promise<Buffer> {
const { zipData } = await this.executeCommand<{ zipData: string }>('getLogcat', null, 5000);
const { zipData } = await this.executeCommand<{ zipData: string }>('getLogcat', null, 30000);

return Buffer.from(zipData, 'base64');
}
Expand Down

0 comments on commit 6c83566

Please sign in to comment.