Version: 5.3 (switch to 5.4b)
ЯзыкEnglish
  • C#
  • JS

Язык программирования

Выберите подходящий для вас язык программирования. Все примеры кода будут представлены на выбранном языке.

Logger.Log

Руководство
public void Log(LogType logType, object message);
public void Log(LogType logType, object message, Object context);
public void Log(LogType logType, string tag, object message);
public void Log(LogType logType, string tag, object message, Object context);
public void Log(object message);
public void Log(string tag, object message);
public void Log(string tag, object message, Object context);

Параметры

logType The type of the log message.
tag Used to identify the source of a log message. It usually identifies the class where the log call occurs.
message String or object to be converted to string representation for display.
context Object to which the message applies.

Описание

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.logger; private static string kTAG = "MyGameTag";

void MyGameMethod() { logger.Log(kTAG, "Hello");

Debug.logger.Log(kTAG, "World");

logger.Log("Hello Logger"); } }