Pass all arguments from debug into print

Allows for multi-argument debug() statements without ugly + or %s
operators.
This commit is contained in:
Mark Veidemanis 2019-10-11 13:04:58 +01:00
parent 324af04de0
commit c3d0cb04b6
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
import main import main
# we need a seperate module to log.py, as log.py is imported by main.py, and we need to access 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 # to read the setting
def debug(data): def debug(*data):
if main.config["Debug"]: if main.config["Debug"]:
print("[DEBUG]", data) print("[DEBUG]", *data)