+from logging import getLogger, basicConfig, DEBUG
+import sys
+from events import TIMEOUT, COLOVER, eventNames
+basicConfig(level=DEBUG, stream = sys.stdout)
+console = getLogger('minwii')
+eventLog = getLogger('minwii.events')
+
+hiddenEvents = {pygame.MOUSEMOTION:True,
+ TIMEOUT:True,
+ COLOVER:True,}