Rework spawning and task structure

Still not working: See TestBot.py
This commit is contained in:
Joscha 2017-09-04 16:21:29 +00:00
parent 34e1ae4b8f
commit 1c3b9d0a20
5 changed files with 252 additions and 93 deletions

View file

@ -1,3 +1,10 @@
import logging
#logging.basicConfig(level=logging.DEBUG)
logging.basicConfig(level=logging.INFO)
logger = logging.getLogger(__name__)
logger.setLevel(logging.DEBUG)
from .connection import *
from .room import *
from .controller import *