Add MARK/DRYRUN logger levels

This commit is contained in:
Luigi311
2023-11-13 01:48:07 -07:00
parent df13cef760
commit b311bf2770
3 changed files with 30 additions and 25 deletions

View File

@@ -23,6 +23,10 @@ def logger(message: str, log_type=0):
output = f"[DEBUG]: {output}"
elif log_type == 4:
output = f"[WARNING]: {output}"
elif log_type == 5:
output = f"[MARK]: {output}"
elif log_type == 6:
output = f"[DRYRUN]: {output}"
else:
output = None