From 10321f32bd2d4f67f80bafdc664daad88dc78933 Mon Sep 17 00:00:00 2001 From: 0xb00bface <0xboobface@gmail.com> Date: Sun, 24 Jan 2021 12:59:59 +0100 Subject: [PATCH] Reduce log level of updateCloudFlareCookies --- common/src/main/java/ctbrec/sites/manyvids/MVLiveModel.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/src/main/java/ctbrec/sites/manyvids/MVLiveModel.java b/common/src/main/java/ctbrec/sites/manyvids/MVLiveModel.java index bd735d05..cca2d5d1 100644 --- a/common/src/main/java/ctbrec/sites/manyvids/MVLiveModel.java +++ b/common/src/main/java/ctbrec/sites/manyvids/MVLiveModel.java @@ -125,7 +125,7 @@ public class MVLiveModel extends AbstractModel { public void updateCloudFlareCookies() throws IOException, InterruptedException { String url = "https://" + APP_HOST + "/api/" + getRoomNumber() + "/player-settings/" + getDisplayName(); - LOG.debug("Getting CF cookies: {}", url); + LOG.trace("Getting CF cookies: {}", url); Request req = new Request.Builder() .url(url) .header(USER_AGENT, Config.getInstance().getSettings().httpUserAgent)