From 4f153b0321f4353035eeca714776638e269b5f71 Mon Sep 17 00:00:00 2001 From: RetiredWizard Date: Sun, 10 Aug 2025 00:46:43 -0400 Subject: [PATCH] Turn off fill debug prints --- CircuitPython_PyPaint/code.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CircuitPython_PyPaint/code.py b/CircuitPython_PyPaint/code.py index dd0920253..c7cba7c32 100644 --- a/CircuitPython_PyPaint/code.py +++ b/CircuitPython_PyPaint/code.py @@ -681,7 +681,7 @@ class Paint(object): newmin_col = self._w - 1 newmax_col = (self._w // 10) + 1 done = True - self._logger.debug("Rows: %d to %d Cols: %d to %d" , min_row, max_row, min_col, max_col) + #self._logger.debug("Rows: %d to %d Cols: %d to %d" , min_row, max_row, min_col, max_col) for i in range(min_row,max_row): for j in range(min_col,max_col): newmarker = False