diff --git a/src/js/canvas.js b/src/js/canvas.js
index 050541a96fe3baf21d403085b845212eac7cf7f2..f5b571bff33932594db6e8489199b52cb4aec5ba 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);
     }