import subprocess process = subprocess.Popen(['adb', 'logcat'], stdout=subprocess.PIPE) while True: line = process.stdout.readline() line = line.decode('utf-8', errors='ignore') line = line.strip() print(line)
Post a Comment
android logcat viewer for Windows, Linux, Mac https://github.com/cdcsgit/lognote Filtered log viewer Android logcat viewer, kotlin ...
No comments:
Post a Comment