mirror of
https://github.com/GrahamKracker/UnityExplorer.git
synced 2025-07-03 03:52:28 +08:00
Fix unity log listeners
This commit is contained in:
@ -66,7 +66,7 @@ namespace UnityExplorer.Core.Runtime.Il2Cpp
|
|||||||
|
|
||||||
private void Application_logMessageReceived(string condition, string stackTrace, LogType type)
|
private void Application_logMessageReceived(string condition, string stackTrace, LogType type)
|
||||||
{
|
{
|
||||||
ExplorerCore.Log(condition, type, true);
|
ExplorerCore.LogUnity(condition, type);
|
||||||
}
|
}
|
||||||
|
|
||||||
public override void StartCoroutine(IEnumerator routine)
|
public override void StartCoroutine(IEnumerator routine)
|
||||||
|
@ -39,7 +39,7 @@ namespace UnityExplorer.Core.Runtime.Mono
|
|||||||
|
|
||||||
private void Application_logMessageReceived(string condition, string stackTrace, LogType type)
|
private void Application_logMessageReceived(string condition, string stackTrace, LogType type)
|
||||||
{
|
{
|
||||||
ExplorerCore.Log(condition, type, true);
|
ExplorerCore.LogUnity(condition, type);
|
||||||
}
|
}
|
||||||
|
|
||||||
public override void StartCoroutine(IEnumerator routine)
|
public override void StartCoroutine(IEnumerator routine)
|
||||||
|
Reference in New Issue
Block a user