Moved files to subdirectory
This commit is contained in:
13
legacy/utils/logging/debug.py
Normal file
13
legacy/utils/logging/debug.py
Normal file
@@ -0,0 +1,13 @@
|
||||
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):
|
||||
if main.config["Debug"]:
|
||||
print("[DEBUG]", *data)
|
||||
|
||||
|
||||
def trace(*data):
|
||||
if main.config["Trace"]:
|
||||
print("[TRACE]", *data)
|
||||
Reference in New Issue
Block a user