[+] LogUnity
AquaMai Build / build (push) Has been cancelled Details

pull/94/head
Clansty 2024-11-29 11:57:58 +08:00
parent 8a728ad28a
commit bed1b85319
No known key found for this signature in database
GPG Key ID: 3A6BE8BAF2EDE134
1 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,23 @@
using AquaMai.Config.Attributes;
using MelonLoader;
using UnityEngine;
namespace AquaMai.Mods.Utils;
[ConfigSection(
en: "Output Unity logs (for debugging purposes)",
zh: "输出 Unity 日志(调试用)",
exampleHidden: true)]
public static class LogUnity
{
public static void OnBeforePatch()
{
Application.logMessageReceived += Log;
}
private static void Log(string msg, string stackTrace, LogType type)
{
MelonLogger.Msg("[Unity] " + msg);
MelonLogger.Msg("[Unity] " + stackTrace);
}
}