-
Notifications
You must be signed in to change notification settings - Fork 438
Debug Log
贾俊辉 edited this page Jun 9, 2018
·
2 revisions
框架内的输出日主,如果您需要,请打开日志开关
PLog.LOG_OPEN = true;
框架内的日志tag如下,您可以选择性过滤
public class DebugLog {
static final String EVENT_TAG_PLAY_EVENT = "frameEvent_play";
static final String EVENT_TAG_ERROR_EVENT = "frameEvent_error";
//...
}
public final class AVPlayer implements IPlayer{
private final String TAG = "AVPlayer";
//...
}
public class BaseVideoView extends FrameLayout implements IVideoView, IStyleSetter {
final String TAG = "BaseVideoView";
//...
}