环境:Unity开发时会有很多的Debug.log输出测试
问题:最后游戏发布的时候,不希望在Produce发布环境也输出大量的日志,官方目前也没有正统的做法。
解决方法1: 重新封装
将Debug.log重新封装,自己添加开关。
using UnityEngine; using System.Collections; public class Debuger { static public bool EnableLog = false; static public void Log(object message) { Log(message,null); } static public void Log(object message, Object context) { if(EnableLog) { Debug.Log(message,context); } } static public void LogError(object message) { LogError(message,null); } static public void LogError(object message, Object context) { if(EnableLog) { Debug.LogError(message,context); } } static public void LogWarning(object message) { LogWarning(message,null); } static public void LogWarning(object message, Object context) { if(EnableLog) { Debug.LogWarning(message,context); } } }
Debug.EnableLog = true Debuger.Log("自己封装的Debuger.log输出");
制作dll方法:
mcs -r:/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll -target:library Debuger.cs
Dll下载地址:http://pan.baidu.com/s/1eQEV3iE
参考雨松:http://www.xuanyusong.com/archives/2782
还有Unity Asset store 中的Disable Logging看起来也很不错,不过需要花钱,有下载的可以共享下看看效果.
版权声明:本文为博主原创文章,未经博主允许不得转载。
原文地址:http://blog.csdn.net/teng_ontheway/article/details/47087941