Reduce log level in loadModelDetails()

This commit is contained in:
0xboobface 2018-11-12 12:39:38 +01:00
parent e9e6d73e97
commit 014ab5312f
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ public class Cam4Model extends AbstractModel {
private void loadModelDetails() throws IOException, ModelDetailsEmptyException {
String url = site.getBaseUrl() + "/getBroadcasting?usernames=" + getName();
LOG.debug("Loading model details {}", url);
LOG.trace("Loading model details {}", url);
Request req = new Request.Builder().url(url).build();
Response response = site.getHttpClient().execute(req);
if(response.isSuccessful()) {