Implement another level of logging for tracing

This commit is contained in:
2020-10-31 00:10:33 +00:00
parent 4d25505625
commit 8deac2ab17
3 changed files with 6 additions and 0 deletions

View File

@@ -5,3 +5,6 @@ def debug(*data):
if main.config["Debug"]:
print("[DEBUG]", *data)
def trace(*data):
if main.config["Trace"]:
print("[TRACE]", *data)