版本: Unity 6 (6000.0)
语言英语
  • C#

Debug.LogException

建议更改

成功!

感谢您帮助我们提高 Unity 文档的质量。虽然我们无法接受所有提交内容,但我们会阅读用户提出的每一项建议,并在适用的情况下进行更新。

关闭

提交失败

由于某些原因,您的建议更改无法提交。请<a>稍后再试</a>。感谢您抽出时间帮助我们提高 Unity 文档的质量。

关闭

取消

切换到手册

声明

public static void LogException(Exception exception);

声明

public static void LogException(Exception exception, Object context);

参数

context 消息适用的对象。
exception 运行时异常。

描述

Debug.Log 的变体,它将错误消息记录到控制台。

当您在控制台中选择消息时,将绘制到上下文对象的连接。如果您想知道错误发生在哪个对象上,这非常有用。

其他资源: Debug.unityLogger, ILogger, Logger.LogException.

using System;
using UnityEngine;
using System.Collections;

public class MyGameClass : MonoBehaviour { void MyGameMethod() { try { // Do something that can throw an exception } catch (Exception e) { Debug.LogException(e, this); } } }

请注意,当“ErrorPause”启用时,这会暂停编辑器。