diff --git a/utils/logging/debug.py b/utils/logging/debug.py index 5a7b067..4b05602 100644 --- a/utils/logging/debug.py +++ b/utils/logging/debug.py @@ -1,7 +1,7 @@ import main # we need a seperate module to log.py, as log.py is imported by main.py, and we need to access main # to read the setting -def debug(data): +def debug(*data): if main.config["Debug"]: - print("[DEBUG]", data) + print("[DEBUG]", *data)