bugly报错日志排查方法总结

Posted 汤米粥

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了bugly报错日志排查方法总结相关的知识,希望对你有一定的参考价值。

bugly日志信息解读示例:

Attempt to invoke interface method 'java.util.ArrayList h.i.a.c.a.a(h.i.a.c.d.e)' on a null object reference

Attempt to invoke virtual method 'android.view.ViewTreeObserver android.widget.FrameLayout.getViewTreeObserver()' on a null object reference

总结规律:
上面两个例子都是'ClassA xxx.xxx.xxx()'表示是xxx.xxx.xxx方法出异常了,
这个方法的返回值是ClassA

根据这个规律我们分析这个异常:
Attempt to invoke interface method 'com.example.app.postereditor.data.PageData com.example.app.postereditor.editor.f.N()' on a null object reference com.example.app.h5editor.ui.activity.H5EditorActivity.R0(SourceFile:1)

应该是H5EditorActivity类里com.example.app.postereditor.editor.f.N() editor.f 表示f类的N方法出错了,而且这方法的返回值是PageData

我们先在H5EditorActivity的import里找com.example.app.postereditor.editor这个目录里有哪些类,找到这些:
import com.example.app.postereditor.editor.EditorConfigView;
import com.example.app.postereditor.editor.EditorController;
import com.example.app.postereditor.editor.IEditorView;
import com.example.app.postereditor.editor.base.EditorHelper;
import com.example.app.postereditor.editor.bg.BgEditConfigView;
import com.example.app.postereditor.editor.group.GroupEditorConfigView;
import com.example.app.postereditor.editor.image.ImageEditorConfigView;
import com.example.app.postereditor.editor.layer.LayerConfigView;
import com.example.app.postereditor.editor.shape.ShapeEditorConfigView;
import com.example.app.postereditor.editor.text.TextEditorConfigView;

再找上面类中有哪个类在H5EditorActivity中调用了一个返回值为PageData的方法,排查这上面几个接口和类,发现只有EditorController这个接口的   PageData getSelectedPage();方法是返回PageData对象的。所以应该是H5EditorActivty里的mEditorController.getSelectPage方法报的错。
至些错误已经定位到,bug修复。

以上是关于bugly报错日志排查方法总结的主要内容,如果未能解决你的问题,请参考以下文章

工作总结之服务器时间不同步导致平台验证失败及Linux系统时间同步方法

工作总结之服务器时间不同步导致平台验证失败及Linux系统时间同步方法

记录一下我的排查问题过程实例

mysql报错排查总结

Linux查看log日志命令总结

Linux查看log日志命令总结