Remove log statement

This commit is contained in:
0xb00bface 2021-09-09 16:56:35 +02:00
parent 0c0fc3a232
commit babb522f91
1 changed files with 0 additions and 1 deletions

View File

@ -62,7 +62,6 @@ public class AmateurTvUpdateService extends PaginatedScheduledService {
try (var response = site.getHttpClient().execute(request)) {
if (response.isSuccessful()) {
var content = response.body().string();
LOG.debug(content);
List<Model> models = new ArrayList<>();
var json = new JSONObject(content);
var modelNodes = json.getJSONObject("cams").getJSONArray("nodes");