1
0

By default quiet down the 'getting ready to do this one' line

This commit is contained in:
2025-08-18 15:47:33 -04:00
parent 43af5446af
commit cf38101981

View File

@@ -47,7 +47,7 @@ if log.level == logging.DEBUG:
os.makedirs(DST_DIR, exist_ok=True) os.makedirs(DST_DIR, exist_ok=True)
for AppSetting in AppSettings: for AppSetting in AppSettings:
log.info(f"Processing {AppSetting}") log.debug(f"Processing {AppSetting}")
response = requests.get(AppSettings[AppSetting], headers={"Cookie": f".ROBLOSECURITY={ROBLOSECURITY}"}) response = requests.get(AppSettings[AppSetting], headers={"Cookie": f".ROBLOSECURITY={ROBLOSECURITY}"})
if response.status_code == 200: if response.status_code == 200:
log.info(f"Successfully retrieved {AppSetting}") log.info(f"Successfully retrieved {AppSetting}")