adb logcat -f log.txt error: couldn't open output file: Read-only file system

前端 未结 3 2211
说谎
说谎 2021-02-01 18:53

On windows (win7), debugging a real phone via USB I want to dump the logcat log into a file on my PC. The rate of data is beyond what is usable in eclipse; and I want the whole

3条回答
  •  太阳男子
    2021-02-01 19:26

    adb logcat > logfile.txt
    
    adb logcat *:E > logfile.txt
    

    If you want only errors filtered.

    This works for me on MS Windows 7.

提交回复
热议问题