From 321bbd4d0f3c21a8844b84fcb88b75a2bf790a5e Mon Sep 17 00:00:00 2001 From: Marcin Jachymiak Date: Thu, 26 Mar 2020 11:12:07 -0400 Subject: [PATCH] Fix log checker false positives --- setup-scripts/log-checker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup-scripts/log-checker.py b/setup-scripts/log-checker.py index e8aee471..e8d9b5e3 100755 --- a/setup-scripts/log-checker.py +++ b/setup-scripts/log-checker.py @@ -68,7 +68,7 @@ async def check_journal(): return # If there are any critical errors. upload the whole log file. - if "Critical" or "panic" in std_out: + if "Critical" in std_out or "panic" in std_out: upload_name = "{}-{}-{}-{}-{}:{}:{}.log".format(service_name, time.year, time.month, time.day, time.hour, time.minute, time.second) await send_msg(client, "Critical error found in log!", file=discord.File(io.BytesIO(std_out.encode()), filename=upload_name), force_notify=True) return