当前位置:   article > 正文

对Unity3d C#产生的异常进行人工处理_unity c#崩溃代码

unity c#崩溃代码
System.AppDomain.CurrentDomain.UnhandledException += new System.UnhandledExceptionEventHandler(_OnUnresolvedExceptionHandler);

Application.RegisterLogCallback(_OnDebugLogCallbackHandler);//接手处理Log,在回调方法_OnDebugLogCallbackHandler中进行人工处理

借用Crittercism中的回调代码示例:        

static private void _OnDebugLogCallbackHandler(string name, string stack, LogType type)
{
#if (UNITY_ANDROID && !UNITY_EDITOR) || FORCE_DEBUG
if(LogType.Assert != type && LogType.Exception != type) { return; }
if(mCrittercismsPlugin == null || _IsPluginInited == false) { return; }

try
{
mCrittercismsPlugin.CallStatic("LogUnhandledException", name, name, stack);

}catch(System.Exception e) { CLog(e.Message); }
#endif
}


ps.可以在回调方法中,讲log信息写到文件中,或者发送到后台哦~~

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/盐析白兔/article/detail/309642
推荐阅读
相关标签
  

闽ICP备14008679号