Merge pull request #125 from NebulousLabs/fix-log-false-positive

Fix log checker false positives
This commit is contained in:
Marcin Jachymiak 2020-03-26 11:13:12 -04:00 committed by GitHub
commit b7a91ee67c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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