From 9977d8ec28d47a3c18808e3e97d72769a36c64aa Mon Sep 17 00:00:00 2001 From: Gonzalo Odiard Date: Mon, 23 Jun 2014 18:40:50 +0000 Subject: Remove logging --- diff --git a/game.py b/game.py index 2f96323..8ad090e 100644 --- a/game.py +++ b/game.py @@ -216,7 +216,6 @@ class MazeGame(Gtk.DrawingArea): self._ctx = cairo.Context(self._cached_surface) if self._dirty_rect is None and len(self._dirty_points) == 0: - logging.error('DRAW NOTHING') ctx.set_source_surface(self._cached_surface) ctx.paint() return @@ -251,7 +250,6 @@ class MazeGame(Gtk.DrawingArea): # re-draw the dirty rectangle if self._dirty_rect is not None: - logging.error('dirty_rect is not None') # background self._ctx.save() @@ -275,7 +273,6 @@ class MazeGame(Gtk.DrawingArea): # re-draw the dirty points for x, y in self._dirty_points: - logging.error('draw_point %s %s', x, y) drawPoint(x, y) main_player = self.localplayers[0] -- cgit v0.9.1