Fix unity log listeners

This commit is contained in:
Sinai 2021-04-22 20:11:34 +10:00
parent bd6de84f93
commit a4f774b6b2
2 changed files with 2 additions and 2 deletions

View File

@ -66,7 +66,7 @@ namespace UnityExplorer.Core.Runtime.Il2Cpp
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)

View File

@ -39,7 +39,7 @@ namespace UnityExplorer.Core.Runtime.Mono
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)