Reduce log level for some Cam4Model log statements
This commit is contained in:
parent
ca94199f41
commit
0ad5e8ce87
|
@ -126,7 +126,7 @@ public class Cam4Model extends AbstractModel {
|
|||
if (m.find()) {
|
||||
playlistUrl = m.group(1);
|
||||
} else {
|
||||
LOG.debug("hlsUrl not in page");
|
||||
LOG.trace("hlsUrl not in page");
|
||||
getPlaylistUrlFromStreamUrl();
|
||||
}
|
||||
if (playlistUrl == null) {
|
||||
|
@ -137,7 +137,7 @@ public class Cam4Model extends AbstractModel {
|
|||
|
||||
private void getPlaylistUrlFromStreamUrl() throws IOException {
|
||||
String url = getSite().getBaseUrl() + "/_profile/streamURL?username=" + getName();
|
||||
LOG.debug("Getting playlist url from {}", url);
|
||||
LOG.trace("Getting playlist url from {}", url);
|
||||
Request req = new Request.Builder() // @formatter:off
|
||||
.url(url)
|
||||
.header(USER_AGENT, Config.getInstance().getSettings().httpUserAgent)
|
||||
|
|
Loading…
Reference in New Issue