当我开发Android应用程序时,我经常发现很难记录。 记录消息并不是很难,但很难看到记录的消息。
也许是因为我正在使用实际手机进行调试,因此logcat会不断充满消息。我可以将严重性切换为“错误”,以便消息更少,但我看不到我的“信息”消息!现在,我能想到的唯一方法是Log.e
而不是Log.i
。但那确实没有意义!
例如,我想显示显示指标:
Point pt = new Point ();
getWindowManager ().getDefaultDisplay ().getSize (pt);
int height = pt.y;
int width = pt.x;
Log.i ("Display Metrics", "Height: " + height);
Log.i ("Display Metrics", "Width: " + width);
我无法在logcat中找到该消息,因为消息不断出现。我甚至不能在这里发布logcat!我怎么记录东西?