Implement another level of logging for tracing

This commit is contained in:
2020-10-31 00:10:33 +00:00
parent 9e6dd5e03d
commit b67eee42c1
3 changed files with 6 additions and 0 deletions

View File

@@ -17,6 +17,8 @@ from utils.cleanup import handler
signal(SIGINT, handler) # Handle Ctrl-C and run the cleanup routine
if "--debug" in sys.argv: # yes really
main.config["Debug"] = True
if "--trace" in sys.argv:
main.config["Trace"] = True
from utils.logging.log import *
from utils.loaders.command_loader import loadCommands
from core.server import Server, ServerFactory