Edit on GitHub

vse_sim.debug_dump

 1DEBUG = True
 2
 3
 4def debug(*args):
 5    if DEBUG:
 6        print(*args)
 7
 8
 9def setDebug(state):
10    global DEBUG
11    DEBUG = state
12
13
14__all__ = ["DEBUG", "debug", "setDebug"]
DEBUG = True
def debug(*args):
5def debug(*args):
6    if DEBUG:
7        print(*args)
def setDebug(state):
10def setDebug(state):
11    global DEBUG
12    DEBUG = state