forked from j62/ctbrec
1
0
Fork 0

Reduce log level in getModelList

This commit is contained in:
0xboobface 2020-05-23 13:47:07 +02:00
parent 15ed4af64f
commit 3958a7b5f1
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@ public class Showup extends AbstractSite {
try (Response response = getHttpClient().execute(req)) {
if (response.isSuccessful()) {
String body = response.body().string();
LOG.debug(body);
LOG.trace(body);
JSONObject json = new JSONObject(body);
models = new ArrayList<>();
JSONArray list = json.getJSONArray("list");