diff --git a/src/shapes/TextPath.ts b/src/shapes/TextPath.ts index e279aa74..a7e8a788 100644 --- a/src/shapes/TextPath.ts +++ b/src/shapes/TextPath.ts @@ -170,8 +170,6 @@ export class TextPath extends Shape { if (i === 0) { context.moveTo(0, fontSize / 2 + 1); } - - console.log('underline log'); context.lineTo(glyphInfo[i].width, fontSize / 2 + 1); } context.restore(); @@ -188,7 +186,6 @@ export class TextPath extends Shape { if (hasUnderline) { context.strokeStyle = fill; context.lineWidth = fontSize / 20; - console.log('underline log'); context.stroke(); }