From cf381019812ccdb3872cd073e56f3dcc6a4997f0 Mon Sep 17 00:00:00 2001 From: Clair Delafuente Date: Mon, 18 Aug 2025 15:47:33 -0400 Subject: [PATCH] By default quiet down the 'getting ready to do this one' line --- __init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/__init__.py b/__init__.py index 75d66b1..577bc4b 100644 --- a/__init__.py +++ b/__init__.py @@ -47,7 +47,7 @@ if log.level == logging.DEBUG: os.makedirs(DST_DIR, exist_ok=True) for AppSetting in AppSettings: - log.info(f"Processing {AppSetting}") + log.debug(f"Processing {AppSetting}") response = requests.get(AppSettings[AppSetting], headers={"Cookie": f".ROBLOSECURITY={ROBLOSECURITY}"}) if response.status_code == 200: log.info(f"Successfully retrieved {AppSetting}")