diff --git a/src/SharedToolUtils/DrawUtils.ts b/src/SharedToolUtils/DrawUtils.ts index 3ed4cc14..9fc8a152 100644 --- a/src/SharedToolUtils/DrawUtils.ts +++ b/src/SharedToolUtils/DrawUtils.ts @@ -96,7 +96,6 @@ export function drawAtom(thisAtom: AtomNode, color: string, currentAtom: Boolean * @param color Incoming color string. */ export function drawGuidelines(original: Point, current: Point, color: string): void { - console.log("Drawing guidelines"); ctx.beginPath(); ctx.strokeStyle = color; const dx: number = original.x - current.x;