using System.Collections; using UnityEngine; public class LoggerBridge : MonoBehaviour { // Use this for initialization void Start () { } // Update is called once per frame void Update () { } public void doLog(string msg) { Debug.Log (msg); } }