NSP打包日志区分

This commit is contained in:
sin365 2025-09-23 20:02:47 +08:00
parent 32d54d81c1
commit 3c844befe1

View File

@ -286,7 +286,10 @@ namespace AxibugEmuOnline.Editors
if (!string.IsNullOrEmpty(args.Data))
{
errorBuilder.AppendLine(args.Data);
Debug.LogError($"[AxibugNSPTools]{args.Data}");
if (args.Data.Contains("[WARN]"))
Debug.LogWarning($"[AxibugNSPTools]{args.Data}");
else
Debug.LogError($"[AxibugNSPTools]{args.Data}");
}
};