(httplog) -static: issbsettingenabled false android

Estoy desarrollando una aplicación para Android y corriendo en Samsung J7. El problema es que mientras ejecuta la aplicación muestra el error " (httplog) -static: issbsettingenabled false " hay alguna forma de habilitar httplog true o una forma alternativa de resolver esto. Si programáticamente desea habilitar esta forma de hacer eso

private void tryLogin(String log, String pass) { HttpURLConnection connection; OutputStreamWriter request = null; URL url = null; String response = null; String parameters = "="+log+"&="+pass; try { url = new URL("http://209.68.26.95/anglertechnologieseit/lc_webservice/webservice.php?Case=loginCheck"); connection = (HttpURLConnection) url.openConnection(); connection.setDoOutput(true); connection.setRequestProperty("Content-Type", "application/x-www-form-urlencoded"); connection.setRequestMethod("POST"); request = new OutputStreamWriter(connection.getOutputStream()); request.write(parameters); request.flush(); request.close(); String line = ""; InputStreamReader isr = new InputStreamReader(connection.getInputStream()); BufferedReader reader = new BufferedReader(isr); StringBuilder sb = new StringBuilder(); while ((line = reader.readLine()) != null) { sb.append(line + "\n"); } stored in response variable. response = sb.toString(); Toast.makeText(this,"Message from Server: \n"+ response, 0).show(); System.out.println("Message from Serverrrrrrrrrrrr :"+response); isr.close(); reader.close(); } catch(IOException e) { System.out.println("eeerrrrooorrr"+e); } } 

introduzca la descripción de la imagen aquí

FlipAndroid es un fan de Google para Android, Todo sobre Android Phones, Android Wear, Android Dev y Aplicaciones para Android Aplicaciones.