Get default debug logger.
Logs message
to the Unity Console using default logger.
Additional resources: ILogger, ILogHandler.
using UnityEngine; using System.Collections;
public class MyGameClass : MonoBehaviour { private static ILogger logger = Debug.unityLogger; private static string kTAG = "MyGameTag";
void MyGameMethod() { logger.Log(kTAG, "Hello");
Debug.unityLogger.Log(kTAG, "World"); } }