From ed8b263085a00daf98527f301c43e5a4f3f8985f Mon Sep 17 00:00:00 2001
From: Erno Lokkila <eolokk@utu.fi>
Date: Sun, 3 Mar 2019 16:09:27 +0200
Subject: [PATCH] removed debug messages

---
 Assets/Scripts/EventSystem/EventSystem.cs | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/Assets/Scripts/EventSystem/EventSystem.cs b/Assets/Scripts/EventSystem/EventSystem.cs
index 8726731..89bed80 100644
--- a/Assets/Scripts/EventSystem/EventSystem.cs
+++ b/Assets/Scripts/EventSystem/EventSystem.cs
@@ -15,11 +15,8 @@ public static class EventSystem
 
     public static void EventHappened(EventType name)
     {
-        Debug.Log("happened");
         if (events.ContainsKey(name))
         {
-
-            Debug.Log("contains: "+events.Values.ToString());
             foreach (IAction e in events[name]){
                 e.React(name);
             }
-- 
GitLab