forked from j62/ctbrec
1
0
Fork 0

Adjust log levels

This commit is contained in:
0xb00bface 2020-07-18 19:15:09 +02:00
parent 7ff731ec88
commit 010c4a04cd
1 changed files with 2 additions and 2 deletions

View File

@ -89,7 +89,7 @@ public class CamsodaModel extends AbstractModel {
url.append(streamName);
url.append("_h264_aac_480p/playlist.m3u8");
}
LOG.debug("Stream URL: {}", url);
LOG.trace("Stream URL: {}", url);
return url.toString();
}
@ -125,7 +125,7 @@ public class CamsodaModel extends AbstractModel {
if (playlistUrl == null) {
return Collections.emptyList();
}
LOG.info("Loading playlist {}", playlistUrl);
LOG.trace("Loading playlist {}", playlistUrl);
Request req = new Request.Builder()
.url(playlistUrl)
.header(ACCEPT_LANGUAGE, Locale.ENGLISH.getLanguage())