public void LogWarning (string tag, object message);
public void LogWarning (string tag, object message, Object context);

参数

tag用于标识日志消息的源。它通常标识发生日志调用的类。
message字符串或对象,将被转换为字符串表示进行显示。
context此消息应用到的对象。

描述

记录警告消息的 Logger.Log 的变体。

using UnityEngine;
using System.Collections;

public class MyGameClass : MonoBehaviour { private static ILogger logger = Debug.unityLogger; private static string kTAG = "MyGameTag"; private Transform tr;

void MyGameMethod() { if (tr == null) { logger.LogWarning(kTAG, "memberVariable must be set to point to a Transform.", tr);

Debug.unityLogger.LogWarning(kTAG, "Failed! to set Transform", tr); } } }