From a776d5cab1a7fb197a078aa5fb1585ca29bfded4 Mon Sep 17 00:00:00 2001 From: Vinayak Kulkarni <19776877+vinayakkulkarni@users.noreply.github.com> Date: Thu, 5 Jan 2023 22:36:09 +0530 Subject: [PATCH] chore: remove `console.log()` Signed-off-by: Vinayak Kulkarni <19776877+vinayakkulkarni@users.noreply.github.com> --- src/serve_rendered.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/serve_rendered.js b/src/serve_rendered.js index f40eb63..8b8b792 100644 --- a/src/serve_rendered.js +++ b/src/serve_rendered.js @@ -475,7 +475,6 @@ const drawPath = (ctx, path, query, z) => { ctx.fillStyle = splitPaths .find((x) => x.startsWith('fill:')) .replace('fill:', ''); - console.log('path has fill', ctx.fillStyle); } ctx.fill(); } @@ -494,7 +493,6 @@ const drawPath = (ctx, path, query, z) => { lineWidth = Number( splitPaths.find((x) => x.startsWith('width:')).replace('width:', ''), ); - console.log('line width', lineWidth); } // Get border width from query and fall back to 10% of line width const borderWidth =