Unity日志未出现在Adb中

时间:2018-09-06 09:13:49

标签: android unity3d adb

我正在运行具有以下内容的android开发版本:

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UniRx;
using EasyMobile;
using System;

public class Test : MonoBehaviour
{
    void Update()
    {
        Debug.Log("Test");
        print("Test");
    }
}

在Android adb logcat上以开发人员模式运行永远不会显示“测试”。

但是它确实在日志中显示异常(例如null引用异常),这使我觉得Debug.Log中丢失了一些东西

0 个答案:

没有答案