From 0fd732818492a4c1c8bed4265d784b982bdb0714 Mon Sep 17 00:00:00 2001
From: Max <m.giller@tu-braunschweig.de>
Date: Wed, 29 Jun 2022 14:13:01 +0200
Subject: [PATCH] Added console output for debugging

---
 src/editor/js/components/editor.tsx | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/editor/js/components/editor.tsx b/src/editor/js/components/editor.tsx
index a69018a..bbc0cce 100644
--- a/src/editor/js/components/editor.tsx
+++ b/src/editor/js/components/editor.tsx
@@ -223,6 +223,8 @@ export class Editor extends React.PureComponent<propTypes, stateTypes> {
     }
 
     private handleNodeCanvasObject(node: any, ctx: any, globalScale: any) {
+        console.log("Custom node rendering");
+
         // add ring just for highlighted nodes
         if (this.isHighlighted(node)) {
             ctx.beginPath();
-- 
GitLab