public static ILogger unityLogger ;

설명

Get default debug logger.

Logs message to the Unity Console using default logger.

See Also: 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"); } }