Reduce log level for some Cam4Model log statements

This commit is contained in:
0xb00bface 2021-04-30 13:56:29 +02:00
parent ca94199f41
commit 0ad5e8ce87
1 changed files with 2 additions and 2 deletions

View File

@ -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)