forked from j62/ctbrec
1
0
Fork 0

Remove debug output

This commit is contained in:
0xboobface 2019-04-18 20:21:09 +02:00
parent 2d048369a1
commit 4bc92a9dda
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@ public class StreamateHttpClient extends HttpClient {
String content = response.body().string();
if(response.isSuccessful()) {
JSONObject json = new JSONObject(content);
LOG.debug(json.toString(2));
//LOG.debug(json.toString(2));
loggedIn = json.has("sakey");
saKey = json.optString("sakey");
JSONObject account = json.getJSONObject("account");