Pass all arguments from debug into print

Allows for multi-argument debug() statements without ugly + or %s
operators.
pull/1/head
Mark Veidemanis 5 years ago
parent 324af04de0
commit c3d0cb04b6

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

Loading…
Cancel
Save