Reduce log level in loadModelDetails()
This commit is contained in:
parent
e9e6d73e97
commit
014ab5312f
|
@ -59,7 +59,7 @@ public class Cam4Model extends AbstractModel {
|
||||||
|
|
||||||
private void loadModelDetails() throws IOException, ModelDetailsEmptyException {
|
private void loadModelDetails() throws IOException, ModelDetailsEmptyException {
|
||||||
String url = site.getBaseUrl() + "/getBroadcasting?usernames=" + getName();
|
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();
|
Request req = new Request.Builder().url(url).build();
|
||||||
Response response = site.getHttpClient().execute(req);
|
Response response = site.getHttpClient().execute(req);
|
||||||
if(response.isSuccessful()) {
|
if(response.isSuccessful()) {
|
||||||
|
|
Loading…
Reference in New Issue