Change logging level to INFO

This commit is contained in:
Dave Astels 2019-06-29 15:31:31 -04:00
parent b32639260e
commit 07f7e2a631

View file

@ -138,7 +138,7 @@ class turtle(object):
def __init__(self, display=board.DISPLAY):
self._logger = logging.getLogger("Turtle")
self._logger.setLevel(logging.DEBUG)
self._logger.setLevel(logging.INFO)
self._display = display
self._w = self._display.width
self._h = self._display.height