Pass all arguments from debug into print
Allows for multi-argument debug() statements without ugly + or %s operators.
This commit is contained in:
parent
324af04de0
commit
c3d0cb04b6
|
@ -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)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue