web-dev-qa-db-ja.com

Android Studio logcat history / buffer size

Android Studioでlogcat履歴/バッファのサイズを増やす方法があるかどうか誰もが知っていますか?Eclipseでそれを行う方法があり、Android Studioにも同様の設定がありました。

38
triad

IDEからプロジェクトごとに行うこともできます。[設定]-> [エディタ]-> [一般]-> [コンソール]:[コンソールサイクルバッファサイズをオーバーライドします。テキストボックスに希望のサイズを入力します。

enter image description here

49
Nick

プロパティファイルidea.cycle.buffer.size=1024Android-studio\bin\idea.propertiesの値を増やすことができます。バッファサイズの単位:(Kb)。私はすでに試してみましたが、それは私にとって完璧です!

次のような構成の説明:

#---------------------------------------------------------------------
# This option controls console cyclic buffer: keeps the console output size not higher than the specified buffer size (Kb).
# Older lines are deleted. In order to disable cycle buffer use idea.cycle.buffer.size=disabled
#---------------------------------------------------------------------
idea.cycle.buffer.size=1024
14
codezjx

現在、logcatのバッファサイズを変更することはできません。ただし、AOSP課題追跡で機能要求を作成しました。リンクは次のとおりです。 https://code.google.com/p/Android/issues/detail?id=73425

8

Idea.cycle.buffer.sizeが http://tools.Android.com/tech-docs/configuration に次のように記載されていることに注意してください。

#----------------------------------------------------------------
# This option controls console cyclic buffer: keeps the console output size not higher than the specified buffer size (Kb).
# Older lines are deleted. In order to disable cycle buffer use idea.cycle.buffer.size=disabled
#----------------------------------------------------------------
idea.cycle.buffer.size=1024
3
netgui

あるいは、主に大きなサイズのデータ​​があり、一時的にデータを確認したい場合は、フィルター(Logcatパッケージの優先度)を使用して、出力をファイルに保存します。

0
Maher Abuthraa