From abe45fd99ff32423dda33cbc9ef3d54e678d3c17 Mon Sep 17 00:00:00 2001 From: bselva Date: Wed, 8 Jan 2025 12:04:27 +0530 Subject: [PATCH] Removed Debug Logs --- Runtime/BaseGraphNode.cs | 8 ++++---- Runtime/Types/EntryNode.cs | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Runtime/BaseGraphNode.cs b/Runtime/BaseGraphNode.cs index f6f7f08..86a380e 100644 --- a/Runtime/BaseGraphNode.cs +++ b/Runtime/BaseGraphNode.cs @@ -53,23 +53,23 @@ public virtual string OnProcess(GraphAssetSO currentGraph) public virtual void AwakeNode() { - Debug.Log($"Awake on Node {this.GetType()}"); + //Debug.Log($"Awake on Node {this.GetType()}"); } public virtual void StartNode() { - Debug.Log($"Start on Node {this.GetType()}"); + // Debug.Log($"Start on Node {this.GetType()}"); } public virtual void UpdateNode() { - Debug.Log($"Update on Node {this.GetType()}"); + //Debug.Log($"Update on Node {this.GetType()}"); } public virtual void ExitNode() { - Debug.Log($"Exit on Node {this.GetType()}"); + //Debug.Log($"Exit on Node {this.GetType()}"); } } diff --git a/Runtime/Types/EntryNode.cs b/Runtime/Types/EntryNode.cs index 63d9c2c..f5254e3 100644 --- a/Runtime/Types/EntryNode.cs +++ b/Runtime/Types/EntryNode.cs @@ -16,7 +16,7 @@ public override string OnProcess(GraphAssetSO currentGraph) public override void StartNode() { base.StartNode(); - Debug.Log("Hello World, Start!"); + //Debug.Log("Hello World, Start!"); IsCompleted = true; }