log.critical() where useful

This commit is contained in:
Florent Daigniere
2023-10-17 14:05:08 +02:00
parent 9f93ed6593
commit 055b216627
2 changed files with 2 additions and 2 deletions

View File

@@ -67,7 +67,7 @@ while True:
thread.start()
r = requests.get(target)
if r.status_code != 204:
log.error(f"Can't reach {target}!, please ensure it's fixed or change the TLS_FLAVOR.")
log.critical(f"Can't reach {target}!, please ensure it's fixed or change the TLS_FLAVOR.")
time.sleep(5)
else:
break