我想将我的 android 设备中的日志写入 Windows XP 下的文件。我正在尝试使用命令:
adb logcat -f test
但它返回:
log file locked.couldn't open output file: Bad file number
如果我使用
adb logcat >test
然后它工作正常,但它没有向控制台显示任何内容。我认为使用“-f”选项会在控制台中显示数据并同时写入文件。怎么做?
我想将我的 android 设备中的日志写入 Windows XP 下的文件。我正在尝试使用命令:
adb logcat -f test
但它返回:
log file locked.couldn't open output file: Bad file number
如果我使用
adb logcat >test
然后它工作正常,但它没有向控制台显示任何内容。我认为使用“-f”选项会在控制台中显示数据并同时写入文件。怎么做?