Log.i Log.d ecc不适用于Android Studio

时间:2017-05-31 17:51:37

标签: android logging logcat

我不知道为什么,但是当我尝试使用Log时,在我的Android Studio代码中。它没有在Android Monitor上显示。我选择所有选项:没有过滤器并选择了我的手机。 有代码示例:

JSONObject req = new JSONObject();
try {
    req.put("username", username_login.getText().toString());
    req.put("password", password_login.getText().toString());
    req.put("path", "login");
    Log.i("request", username_login.getText() + " " + password_login.getText().toString() + " " + password_login.getText().toString().length());

    new Request(new RequestCallback() {
        @Override
        public void in_the_end(JSONObject a) {
           }}}



        }
    }).execute(req);

2 个答案:

答案 0 :(得分:0)

它会正常工作,似乎你没有正确过滤它

按照图片enter image description here

中的说明更改Log cat中的设置

答案 1 :(得分:0)

尝试更改已连接的Android手机。如果可以,则表明开发人员选项中的设置存在问题。