Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/maze.py
diff options
context:
space:
mode:
Diffstat (limited to 'maze.py')
-rw-r--r--maze.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/maze.py b/maze.py
index 72d17e9..3d1264a 100644
--- a/maze.py
+++ b/maze.py
@@ -63,7 +63,7 @@ class Maze:
starty = self.generator.randrange(1, height, 2)
self.dig(startx, starty)
for row in self.map:
- logging.error(row)
+ logging.debug(row)
def _check_point_in_rectangle(self, rectangle, x, y):
if x < rectangle.x or y < rectangle.y: