Runs ``adb logcat`` using the adb binary from the detected SDK directory. All extra args are passed as arguments to logcat.
(self, args)
| 1232 | self._adb(args.unknown_args) |
| 1233 | |
| 1234 | def logcat(self, args): |
| 1235 | """Runs ``adb logcat`` using the adb binary from the detected SDK |
| 1236 | directory. All extra args are passed as arguments to logcat.""" |
| 1237 | self._adb(['logcat'] + args.unknown_args) |
| 1238 | |
| 1239 | def _adb(self, commands): |
| 1240 | """Call the adb executable from the SDK, passing the given commands as |