forked from j62/ctbrec
Reduce log level in getModelList
This commit is contained in:
parent
15ed4af64f
commit
3958a7b5f1
|
@ -82,7 +82,7 @@ public class Showup extends AbstractSite {
|
||||||
try (Response response = getHttpClient().execute(req)) {
|
try (Response response = getHttpClient().execute(req)) {
|
||||||
if (response.isSuccessful()) {
|
if (response.isSuccessful()) {
|
||||||
String body = response.body().string();
|
String body = response.body().string();
|
||||||
LOG.debug(body);
|
LOG.trace(body);
|
||||||
JSONObject json = new JSONObject(body);
|
JSONObject json = new JSONObject(body);
|
||||||
models = new ArrayList<>();
|
models = new ArrayList<>();
|
||||||
JSONArray list = json.getJSONArray("list");
|
JSONArray list = json.getJSONArray("list");
|
||||||
|
|
Loading…
Reference in New Issue