From d29672bb214fa3b9ed70210b48e0a7948b476027 Mon Sep 17 00:00:00 2001 From: 0xboobface <0xboobface@gmail.com> Date: Sun, 23 Dec 2018 13:58:08 +0100 Subject: [PATCH] Remove debug output --- .../ctbrec/ui/sites/jasmin/LiveJasminFollowedUpdateService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/main/java/ctbrec/ui/sites/jasmin/LiveJasminFollowedUpdateService.java b/client/src/main/java/ctbrec/ui/sites/jasmin/LiveJasminFollowedUpdateService.java index 90ada272..b0cf8089 100644 --- a/client/src/main/java/ctbrec/ui/sites/jasmin/LiveJasminFollowedUpdateService.java +++ b/client/src/main/java/ctbrec/ui/sites/jasmin/LiveJasminFollowedUpdateService.java @@ -52,7 +52,7 @@ public class LiveJasminFollowedUpdateService extends PaginatedScheduledService { String body = response.body().string(); List models = new ArrayList<>(); JSONObject json = new JSONObject(body); - LOG.debug(json.toString(2)); + //LOG.debug(json.toString(2)); if(json.has("success")) { JSONObject data = json.getJSONObject("data"); JSONArray performers = data.getJSONArray("performers");