Reduce log level

This commit is contained in:
0xb00bface 2023-12-31 14:27:13 +01:00
parent f45991effc
commit ef66aebeda
1 changed files with 1 additions and 1 deletions

View File

@ -309,7 +309,7 @@ public class ChaturbateModel extends AbstractModel {
lastStreamInfoRequest = Instant.now(); lastStreamInfoRequest = Instant.now();
if (response.isSuccessful()) { if (response.isSuccessful()) {
String content = response.body().string(); String content = response.body().string();
log.debug("Raw stream info for model {}: {}", getName(), content); log.trace("Raw stream info for model {}: {}", getName(), content);
streamInfo = mapper.readValue(content, StreamInfo.class); streamInfo = mapper.readValue(content, StreamInfo.class);
return streamInfo; return streamInfo;
} else { } else {