Remove debug output
This commit is contained in:
parent
2d048369a1
commit
4bc92a9dda
|
@ -82,7 +82,7 @@ public class StreamateHttpClient extends HttpClient {
|
||||||
String content = response.body().string();
|
String content = response.body().string();
|
||||||
if(response.isSuccessful()) {
|
if(response.isSuccessful()) {
|
||||||
JSONObject json = new JSONObject(content);
|
JSONObject json = new JSONObject(content);
|
||||||
LOG.debug(json.toString(2));
|
//LOG.debug(json.toString(2));
|
||||||
loggedIn = json.has("sakey");
|
loggedIn = json.has("sakey");
|
||||||
saKey = json.optString("sakey");
|
saKey = json.optString("sakey");
|
||||||
JSONObject account = json.getJSONObject("account");
|
JSONObject account = json.getJSONObject("account");
|
||||||
|
|
Loading…
Reference in New Issue