Skip to content
This repository was archived by the owner on Jan 10, 2023. It is now read-only.

Commit 41d5477

Browse files
authored
Remove the timeout for logcat from the CLI (#48)
1 parent a5178ce commit 41d5477

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

adb/adb_debug.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,8 @@ def List(self, device_path):
8484

8585
@functools.wraps(adb_commands.AdbCommands.Logcat)
8686
def Logcat(self, *options):
87-
return adb_commands.AdbCommands.Logcat(self, ' '.join(options))
87+
return adb_commands.AdbCommands.Logcat(
88+
self, ' '.join(options), timeout_ms=0)
8889

8990

9091
def Shell(self, *command):

0 commit comments

Comments
 (0)