From 2e0a28ccd00426679e7ea504fe44d6a9ced80a9f Mon Sep 17 00:00:00 2001
From: Bye <bye@byecorps.com>
Date: Tue, 15 Aug 2023 17:02:39 +0100
Subject: [PATCH] remove debug info

---
 src/js/canvas.js | 1 -
 1 file changed, 1 deletion(-)

diff --git a/src/js/canvas.js b/src/js/canvas.js
index 050541a..f5b571b 100644
--- a/src/js/canvas.js
+++ b/src/js/canvas.js
@@ -26,7 +26,6 @@ class Canvas {
     }
     
     drawImage(image, x, y, width = image.width, height = image.height) {
-        console.debug("drawImage", image, x, y, width, height);
         this.ctx.drawImage(image, x-this.cX, y-this.cY, width, height);
     }
 
-- 
GitLab