1
0

Add debug warning

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

View File

@@ -41,6 +41,9 @@ log.addHandler(logfile_handler)
if ROBLOSECURITY is None: if ROBLOSECURITY is None:
log.warning(f"{"#"*6} ROBLOSECURITY IS NOT SET, SOME FFLAGS MAY BE MISSING {"#"*6}") log.warning(f"{"#"*6} ROBLOSECURITY IS NOT SET, SOME FFLAGS MAY BE MISSING {"#"*6}")
if log.level == logging.DEBUG:
log.warning(f"{"#"*6} DEBUG MODE ENABLED, THIS IS A LITTLE LOUDER {"#"*6}")
os.makedirs(DST_DIR, exist_ok=True) os.makedirs(DST_DIR, exist_ok=True)
for AppSetting in AppSettings: for AppSetting in AppSettings: