Skip to content

Commit cbb23cb

Browse files
committed
Cleanup instrumentation
1 parent 7a45283 commit cbb23cb

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

adafruit_turtle.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,6 @@ def __init__(self, display=board.DISPLAY):
200200
def _drawturtle(self):
201201
self._turtle_sprite.x = int(self._x - 4)
202202
self._turtle_sprite.y = int(self._y - 4)
203-
#self._logger.debug("pos (%d, %d)", self._x, self._y)
204203

205204
############################################################################
206205
# Move and draw
@@ -264,7 +263,6 @@ def goto(self, x1, y1=None):
264263
y1 = self._h // 2 - y1
265264
x0 = self._x
266265
y0 = self._y
267-
self._logger.debug("* GoTo from (%d, %d) to (%d, %d)", x0, y0, x1, y1)
268266
if not self.isdown():
269267
self._x = x1 # woot, we just skip ahead
270268
self._y = y1
@@ -470,7 +468,6 @@ def dot(self, size=None, color=None):
470468
color = self._pencolor
471469
else:
472470
color = self._color_to_pencolor(color)
473-
self._logger.debug('dot(%d)', size)
474471
self._draw_disk(self._x - size, self._y - size, 2 * size + 1, 2 * size + 1, size, color)
475472
self._fg_sprite[0, 0] = 0
476473

0 commit comments

Comments
 (0)