我正在运行具有以下内容的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中丢失了一些东西