using System.Collections; using System.Collections.Generic; using UnityEngine; public class DebugLogger : MonoBehaviour { // Start is called before the first frame update public void Log(string log) { Debug.Log(log); } }